-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "carrot-market",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@hookform/resolvers": "^3.4.2",
"@prisma/client": "^5.13.0",
"@supabase/supabase-js": "^2.43.5",
"@tailwindcss/typography": "^0.5.13",
"@types/bcrypt": "^5.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"framer-motion": "^11.2.12",
"iron-session": "^8.0.1",
"next": "14.2.2",
"prisma": "^5.13.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.5",
"react-markdown": "^9.0.1",
"react-simple-typewriter": "^5.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"typeit": "^8.8.3",
"typeit-react": "^2.7.1",
"validator": "^13.11.0",
"zod": "^3.23.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/validator": "^13.11.9",
"eslint": "^8",
"eslint-config-next": "14.2.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}