-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@hookform/resolvers": "5.2.2",
"@prisma/client": "6.19.0",
"bcryptjs": "3.0.3",
"cloudinary": "2.8.0",
"d3": "7.9.0",
"date-fns": "4.1.0",
"jose": "6.1.3",
"lodash": "4.17.21",
"motion": "12.23.25",
"next": "15.5.9",
"react": "19.2.3",
"react-aria-components": "1.13.0",
"react-dom": "19.2.3",
"react-hook-form": "7.68.0",
"react-icons": "5.5.0",
"react-use-measure": "2.1.7",
"server-only": "0.0.1",
"spin-delay": "2.0.1",
"zod": "3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.3",
"@tailwindcss/postcss": "4.1.17",
"@types/d3": "7.4.3",
"@types/lodash": "4.17.21",
"@types/node": "22.19.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"clsx": "2.1.1",
"eslint": "9.39.1",
"eslint-config-next": "15.5.9",
"prettier": "3.7.4",
"prettier-plugin-tailwindcss": "0.7.2",
"prisma": "6.19.0",
"tailwind-merge": "3.4.0",
"tailwind-variants": "3.2.2",
"tailwindcss": "4.1.17",
"tailwindcss-react-aria-components": "2.0.1",
"tsx": "4.21.0",
"tw-animate-css": "1.4.0",
"typescript": "5.9.3"
}
}