-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
58
59
{
"name": "next15-remix-jokes-rebuild",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma.studio": "npx prisma studio",
"prisma.seed": "npx prisma db seed",
"prisma.migrate": "npx prisma migrate dev",
"prisma.push": "npx prisma db push"
},
"dependencies": {
"@hookform/resolvers": "^3.6.0",
"@prisma/client": "^5.15.0",
"@tanstack/react-query": "^5.40.1",
"@tanstack/react-query-devtools": "^5.40.1",
"@types/node": "20.14.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"clsx": "^2.1.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"next": "15.0.0-rc.0",
"postcss": "^8.4.38",
"react": "19.0.0-rc.0",
"react-dom": "19.0.0-rc.0",
"react-hook-form": "^7.51.5",
"react-hot-toast": "^2.4.1",
"server-only": "^0.0.1",
"sucrase": "^3.35.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "3.4.4",
"ts-interface-checker": "^1.0.2",
"typescript": "5.4.5",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/eslint": "^8.56.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-autofix": "^2.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-react-compiler": "^0.0.0-experimental-51a85ea-20240601",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.2",
"prisma": "^5.15.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}