-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.48 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.48 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ecommerce-premium",
"version": "2.0.0",
"private": true,
"engines": {
"node": "22.x || 24.x"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && npx prisma migrate deploy && next build",
"start": "next start",
"postinstall": "prisma generate",
"lint": "eslint src/",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio"
},
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "8.0.0",
"@dnd-kit/utilities": "3.2.2",
"@hookform/resolvers": "3.9.1",
"@neondatabase/serverless": "0.10.4",
"@prisma/adapter-neon": "5.22.0",
"@prisma/client": "5.22.0",
"@radix-ui/react-alert-dialog": "1.1.4",
"@radix-ui/react-avatar": "1.1.2",
"@radix-ui/react-checkbox": "1.1.3",
"@radix-ui/react-dialog": "1.1.4",
"@radix-ui/react-dropdown-menu": "2.1.4",
"@radix-ui/react-select": "2.1.4",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "1.2.2",
"@radix-ui/react-tabs": "1.1.2",
"@radix-ui/react-toast": "1.2.4",
"@react-email/components": "0.0.31",
"@types/bcryptjs": "2.4.6",
"@types/ws": "^8.18.1",
"@uploadthing/react": "7.3.3",
"@upstash/ratelimit": "^1.2.1",
"@upstash/redis": "^1.31.3",
"bcryptjs": "2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "4.1.0",
"framer-motion": "11.18.2",
"lucide-react": "^0.474.0",
"nanoid": "5.0.9",
"next": "16.2.0",
"next-auth": "5.0.0-beta.25",
"next-intl": "^3.26.3",
"next-themes": "^0.4.4",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "7.54.2",
"recharts": "3.8.1",
"resend": "4.0.1",
"sharp": "0.33.5",
"slugify": "1.6.6",
"sonner": "^1.7.1",
"tailwind-merge": "^2.6.0",
"tw-animate-css": "^1.4.0",
"typescript": "5.7.2",
"uploadthing": "7.7.4",
"ws": "^8.20.0",
"zod": "^3.25.0",
"zustand": "5.0.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^22.12.0",
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"autoprefixer": "10.4.20",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "^17.4.1",
"eslint": "9.17.0",
"eslint-config-next": "16.2.0",
"postcss": "8.4.49",
"prisma": "5.22.0",
"tailwindcss": "^4.2.2",
"tsx": "^4.19.2"
}
}