-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 906 Bytes
/
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
{
"name": "template-nextjs-tailwind",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "pnpm dev",
"dev": "next dev",
"dev:next": "next dev",
"build": "next build",
"update:all": "pnpm update --interactive --latest",
"generate": "pnpm prisma generate"
},
"dependencies": {
"@tanstack/react-query": "^5.61.0",
"@trpc/client": "^11.0.0-rc.638",
"@trpc/next": "^11.0.0-rc.638",
"@trpc/react-query": "^11.0.0-rc.638",
"@trpc/server": "^11.0.0-rc.638",
"next": "15.1.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwindcss": "^4.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "18.19.47",
"@types/react": "19.0.8",
"postcss": "^8.5.1",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18.17.0"
}
}