-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.05 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
{
"name": "simulab",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "A universal rule-based simulation and algorithm sandbox",
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "npm run dev --workspace @simulab/web",
"dev:turbo": "npm run dev:turbo --workspace @simulab/web",
"build": "npm run build --workspace @simulab/web",
"start": "npm run start --workspace @simulab/web",
"clean": "npm run clean --workspace @simulab/web",
"api": "cd apps/api && .venv\\Scripts\\python.exe -m uvicorn simulab_api.main:app --port 8000 --reload",
"api:setup": "python -m venv apps/api/.venv && apps\\api\\.venv\\Scripts\\python.exe -m pip install -r apps/api/requirements-dev.txt",
"api:test": "cd apps/api && .venv\\Scripts\\python.exe -m pytest tests/ -q",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}