-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "hanclassstudio",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/web"
],
"scripts": {
"dev:api": "PYTHONPATH=apps/api/src uv run --project apps/api python -m uvicorn hcs_api.main:app --reload --reload-dir apps/api/src --host 127.0.0.1 --port 8000",
"dev:web": "npm --prefix apps/web run dev",
"install:web": "npm --prefix apps/web install",
"build:web": "npm --prefix apps/web run build",
"test:api": "PYTHONPATH=apps/api/src uv run --project apps/api python -m pytest apps/api/tests",
"test:web-state": "npm --prefix apps/web run test:state",
"test:e2e": "playwright test",
"test": "npm run test:api && npm run build:web && npm run test:web-state"
},
"devDependencies": {
"@playwright/test": "^1.61.1"
}
}