-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "card-game",
"module": "index.ts",
"devDependencies": {
"@biomejs/biome": "2.1.4",
"@types/bun": "latest",
"lefthook": "^1.12.2",
"vite": "^7.0.6"
},
"peerDependencies": {
"typescript": "^5"
},
"private": true,
"scripts": {
"dev": "bun run --filter='@apps/{frontend,backend}' dev",
"dev:frontend": "cd ./apps/frontend && bun run dev",
"dev:backend": "cd ./apps/backend && bun run dev",
"db:push": "cd ./apps/backend && bun run db:push",
"fix": "bunx --bun biome check --write .",
"fix:format": "bunx --bun biome format --write .",
"fix:lint": "bunx --bun biome lint --write .",
"check": "bunx --bun biome check .",
"check:format": "bunx --bun biome format .",
"check:lint": "bunx --bun biome lint .",
"check:type": "tsc --noEmit",
"build": "cd ./apps/frontend && bun run build",
"deploy": "cd ./apps/frontend && bun run deploy"
},
"type": "module",
"workspaces": [
"apps/*"
],
"dependencies": {
"@types/node": "^24.5.1",
"drizzle-orm": "^0.44.6",
"reconnecting-websocket": "^4.4.0"
}
}