-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "domainatlas-dev",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"bootstrap": "node scripts/bootstrap.mjs",
"dev": "concurrently --kill-others --names backend,frontend --prefix name \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "node scripts/backend.mjs -m fastapi dev src/app/main.py",
"dev:frontend": "npm --prefix frontend run dev",
"test": "concurrently --kill-others-on-fail --names backend,frontend --prefix name \"npm run test:backend\" \"npm run test:frontend\"",
"test:backend": "node scripts/backend.mjs -m pytest -q",
"test:frontend": "npm --prefix frontend run typecheck",
"lint:backend": "node scripts/backend.mjs -m ruff check . --output-format concise",
"build:frontend": "npm --prefix frontend run build",
"check": "npm test && npm run lint:backend && npm run build:frontend"
},
"devDependencies": {
"concurrently": "10.0.4"
}
}