forked from elie222/rakazo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.7 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
{
"name": "rakazo",
"private": true,
"type": "module",
"version": "0.1.0",
"license": "Apache-2.0",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": "^22.22.2 || ^24.0.0 || >=26.0.0"
},
"scripts": {
"dev": "cross-env COREPACK_ENABLE_DOWNLOAD_PROMPT=0 turbo dev --filter=@rakazo/api --filter=@rakazo/worker --filter=@rakazo/web --filter=@rakazo/sandbox-supervisor",
"build": "turbo build",
"check": "turbo check",
"lint": "biome check .",
"format": "biome check --write .",
"db:generate": "pnpm --filter @rakazo/db generate",
"db:migrate": "pnpm --filter @rakazo/db migrate",
"sandbox:build": "docker build -t rakazo/computer:local infra/sandboxes/computer",
"test": "vitest run",
"test:integration": "tsx packages/testkit/src/cli/harness.ts --integration",
"test:e2e": "tsx packages/testkit/src/cli/harness.ts --e2e",
"test:topology": "tsx packages/testkit/src/cli/topology.ts",
"test:canary": "tsx packages/testkit/src/cli/canary.ts",
"test:computer": "tsx packages/testkit/src/cli/computer.ts",
"perf:desktop": "tsx packages/testkit/src/cli/desktop-performance.ts",
"perf:compare": "tsx packages/testkit/src/cli/compare-performance.ts",
"compose:up": "docker compose --env-file .env -f infra/compose/docker-compose.yml up --build",
"compose:down": "docker compose --env-file .env -f infra/compose/docker-compose.yml down -v"
},
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"@types/node": "^24.3.0",
"cross-env": "^10.1.0",
"tsx": "^4.20.5",
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"vitest": "^4.1.10"
},
"pnpm": {
"overrides": {
"react": "19.2.3",
"react-dom": "19.2.3"
}
}
}