forked from wpcodevo/nextjs-trpc-crud-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:migrate": "npx prisma migrate dev --name note-entity --create-only && npx prisma generate",
"db:push": "npx prisma db push",
"postinstall": "prisma db push && prisma generate"
},
"dependencies": {
"@hookform/resolvers": "^2.9.10",
"@prisma/client": "^4.6.1",
"@tanstack/react-query": "^4.13.0",
"@tanstack/react-query-devtools": "^4.13.0",
"@trpc/client": "^10.0.0-proxy-beta.26",
"@trpc/next": "^10.0.0-proxy-beta.26",
"@trpc/react-query": "^10.0.0-proxy-beta.26",
"@trpc/server": "^10.0.0-proxy-beta.26",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.38.0",
"react-toastify": "^9.0.8",
"superjson": "^1.11.0",
"tailwind-merge": "^1.7.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.12",
"postcss": "^8.4.18",
"prisma": "^4.6.1",
"tailwindcss": "^3.2.1",
"typescript": "4.8.4"
}
}