-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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
{
"name": "farmnet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && prisma db push && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"db:migrate": "prisma db push",
"db:seed": "node prisma/seed.js"
},
"dependencies": {
"@prisma/client": "^6.14.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"axios": "^1.11.0",
"bcryptjs": "^3.0.2",
"clsx": "^2.1.1",
"formik": "^2.4.6",
"framer-motion": "^12.23.12",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.2",
"next": "15.4.6",
"prisma": "^6.14.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"react-toastify": "^11.0.5",
"sharp": "^0.34.3",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0",
"yup": "^1.7.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.0",
"tailwindcss": "^3.4.17"
}
}