-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 871 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "interviewpilot",
"private": true,
"version": "0.1.0",
"workspaces": [
"apps/web",
"packages/shared"
],
"scripts": {
"dev:web": "npm --workspace apps/web run dev",
"build:web": "npm --workspace apps/web run build",
"test:api": "pytest -q apps/api/tests",
"lint:web": "npm --workspace apps/web run lint",
"qa": "python .github/skills/qa-tester/scripts/run_qa.py",
"regression:real": "apps\\api\\.venv\\Scripts\\python scripts/run_real_recording_regression.py",
"demo:assets": "apps\\api\\.venv\\Scripts\\python scripts/capture_demo_assets.py",
"docker:up": "docker compose up -d --build",
"docker:down": "docker compose down",
"deploy:one-click:ps": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/one-click-deploy.ps1",
"deploy:one-click:sh": "bash scripts/one-click-deploy.sh"
}
}