-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
{
"name": "veranda-plastics",
"version": "1.0.0",
"description": "Next.js application for Veranda Plastics outdoor furniture",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"vercel-build": "prisma generate && prisma db push && next build",
"postinstall": "prisma generate",
"start": "next start",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev --name init",
"prisma:studio": "prisma studio",
"seed": "prisma db seed"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@auth/prisma-adapter": "^2.11.0",
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^6.17.1",
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"autoprefixer": "^10.4.21",
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"framer-motion": "^12.23.24",
"next": "^15.5.7",
"next-auth": "^4.24.11",
"postcss": "^8.5.6",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.65.0",
"sonner": "^2.0.7",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"zod": "^4.1.12",
"zustand": "^5.0.9"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"prisma": "^6.17.1",
"ts-node": "^10.9.2"
}
}