-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 884 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 884 Bytes
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
{
"name": "trpc-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"start": "next start"
},
"dependencies": {
"@prisma/client": "5.22.0",
"@tanstack/react-query": "4.36.1",
"@trpc/client": "10.45.2",
"@trpc/next": "10.45.2",
"@trpc/react-query": "10.45.2",
"@trpc/server": "10.45.2",
"next": "14.2.20",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "9.0.1",
"superjson": "2.2.2",
"zod": "3.24.1"
},
"devDependencies": {
"@types/node": "22.10.2",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"prisma": "5.22.0",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"ct3aMetadata": {
"initVersion": "7.3.2"
},
"prisma": {
"seed": "ts-node ./prisma/seed.ts"
}
}