-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1001 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1001 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
{
"name": "@example/app",
"private": true,
"type": "module",
"scripts": {
"build": "bash build.bash",
"build:frontend": "vite build",
"start": "bun run server.ts",
"dev": "concurrently \"bun run server.ts\" \"vite\"",
"dev:server": "bun --watch run server.ts",
"dev:frontend": "vite",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@tanstack/react-query": "^5.64.2",
"@trpc/client": "^11.0.0-rc.718",
"@trpc/react-query": "^11.0.0-rc.718",
"@trpc/server": "^11.0.0-rc.718",
"drizzle-orm": "^0.45.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/bun": "^1.2.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.0",
"concurrently": "^10.0.0",
"drizzle-kit": "^0.31.0",
"typescript": "^6.0.0",
"vite": "^8.0.0"
}
}