-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "partha-monorepo",
"version": "0.2.0",
"private": true,
"type": "module",
"workspaces": [
"apps/frontend"
],
"scripts": {
"dev:frontend": "npm --prefix apps/frontend run dev",
"build:frontend": "npm --prefix apps/frontend run build",
"generate:api-contract": "npm --prefix apps/frontend run generate:api-contract",
"preview:frontend": "npm --prefix apps/frontend run preview",
"lint:frontend": "npm --prefix apps/frontend run lint",
"test:backend": "node scripts/backend-python.mjs -m pytest",
"fixtures:e2e": "node scripts/seed-e2e-fixtures.mjs",
"test:e2e": "npm --prefix apps/frontend exec -- playwright install chromium && node scripts/run-e2e-acceptance.mjs",
"test:accessibility": "node scripts/run-e2e-acceptance.mjs e2e/accessibility.spec.ts",
"dev:backend": "node scripts/backend-python.mjs -m uvicorn app.main:app --reload --reload-dir app",
"start:backend": "node scripts/backend-python.mjs -m uvicorn app.main:app --host 0.0.0.0 --port 8000",
"build": "npm run build:frontend && npm run test:backend"
}
}