-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
53
54
55
56
57
{
"name": "lists",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "prisma generate && next dev --turbopack -p 3001",
"build": "prisma generate && prisma db push && next build",
"start": "next start -p 3001",
"lint": "pnpm next lint",
"seed": "node /scripts/seed.js"
},
"dependencies": {
"@heroicons/react": "^2.0.16",
"@hookform/resolvers": "^3.9.1",
"@prisma/client": "^5.22.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@tailwindcss/forms": "^0.5.3",
"@vercel/analytics": "^1.4.0",
"add": "^2.0.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dlx": "^0.2.1",
"lucide-react": "^0.460.0",
"next": "15.0.3",
"next-themes": "^0.4.3",
"pnpm": "^9.13.2",
"prisma": "^5.22.0",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-hook-form": "^7.53.2",
"shadcn": "^2.1.6",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"toast": "^0.5.4",
"zod": "^3.23.8",
"zustand": "^5.0.1"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.14",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.5",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}