-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "tech-pr-workbench-root",
"private": true,
"scripts": {
"setup": "node scripts/dev.mjs --install-only",
"doctor": "node scripts/dev.mjs --check-only",
"dev": "node scripts/dev.mjs",
"backend": "uv run --project backend uvicorn --app-dir backend app.main:app --reload --host 127.0.0.1 --port 8000",
"worker": "uv --directory backend run python -m app.worker",
"frontend": "npm run dev --prefix frontend",
"docker:up": "docker compose up --build",
"docker:down": "docker compose down",
"test:setup": "node --test scripts/*.test.mjs",
"test:backend": "uv run --project backend pytest",
"build:frontend": "npm run build --prefix frontend",
"smoke": "node scripts/release-smoke.mjs",
"test": "npm run test:setup && npm run test:backend && npm run build:frontend"
}
}