-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 1.14 KB
/
package.json
File metadata and controls
18 lines (18 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "null-monorepo",
"private": true,
"scripts": {
"dev:frontend": "pnpm --filter null-frontend dev",
"build:frontend": "pnpm --filter null-frontend build",
"lint:frontend": "pnpm --filter null-frontend lint",
"test:frontend": "pnpm --filter null-frontend test",
"typecheck:frontend": "pnpm --filter null-frontend tsc --noEmit",
"test:backend": "cd backend && poetry run pytest -q",
"lint:backend": "cd backend && poetry run ruff check src tests",
"test:ux-smoke": "python3 scripts/ux_smoke.py --start-servers",
"loadtest:backend": "cd backend && poetry run python scripts/loadtest.py --base-url http://localhost:3301 --requests 400 --concurrency 20 --target-success-rate 0.98 --target-p95-ms 1000",
"loadtest:backend:trend": "cd backend && poetry run python scripts/loadtest.py --base-url http://localhost:3301 --requests 600 --concurrency 30 --history-out ../artifacts/loadtest-history.jsonl --trend-out ../artifacts/loadtest-trend.md --history-window 30 --target-success-rate 0.98 --target-p95-ms 1000",
"ops:check": "bash ./scripts/ops-check.sh",
"ops:startup-smoke": "bash ./scripts/startup-smoke.sh"
}
}