-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.2 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.2 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
{
"name": "robotania",
"private": true,
"workspaces": ["packages/*", "apps/*"],
"scripts": {
"build": "bun run build:types && bun run build:backend && bun run build:dashboard",
"build:types": "cd packages/types && bun run build",
"build:backend": "cd apps/backend && bun run build",
"build:dashboard": "cd apps/dashboard && bun run build",
"build:contracts": "cd packages/contracts && forge build",
"test": "bun run test:contracts && bun run test:backend && bun run test:cli && bun run test:dashboard",
"test:dashboard": "cd apps/dashboard && bun run test && bun run test:e2e",
"test:contracts": "cd packages/contracts && forge test",
"test:backend": "cd apps/backend && bun test",
"test:cli": "cd apps/cli && bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"dev": "echo 'Use: bun run dev:backend or bun run dev:dashboard'",
"dev:backend": "cd apps/backend && bun run dev",
"dev:dashboard": "cd apps/dashboard && bun run dev",
"db:migrate": "cd apps/backend && bun run db:migrate",
"db:seed": "cd apps/backend && bun run db:seed"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"typescript": "^5.7.0"
}
}