-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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
{
"name": "@depsimon/tanstack-trpc-drizzle",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "bun --bun vite dev",
"build": "bun --bun vite build",
"start": "bun --bun .output/server/index.mjs",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"check": "biome check ./ --fix",
"format": "biome format ./ --fix",
"lint": "biome lint ./ --fix",
"typecheck": "tsc",
"postinstall": "lefthook install"
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"@tailwindcss/vite": "^4.1.10",
"@tanstack/react-query": "^5.80.7",
"@tanstack/react-query-devtools": "^5.80.7",
"@tanstack/react-router": "^1.121.2",
"@tanstack/react-router-devtools": "^1.121.5",
"@tanstack/react-router-with-query": "^1.121.2",
"@tanstack/react-start": "^1.121.4",
"@trpc/client": "^11.3.1",
"@trpc/server": "^11.3.1",
"@trpc/tanstack-react-query": "^11.3.1",
"arktype": "^2.1.20",
"better-auth": "^1.2.9",
"drizzle-orm": "^0.43.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "^2.0.5",
"superjson": "^2.2.2",
"tailwindcss": "^4.1.10"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0-beta.6",
"@types/bun": "^1.2.16",
"@types/node": "^22.15.31",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"drizzle-kit": "^0.31.1",
"lefthook": "^1.11.13",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
},
"engines": {
"bun": "1.2.11"
}
}