-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.01 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.01 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": "shelfloom",
"private": true,
"version": "0.1.0",
"workspaces": ["frontend"],
"scripts": {
"dev": "bash dev.sh",
"dev:win": "powershell.exe -ExecutionPolicy Bypass -File dev.ps1",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "uv run --directory backend python -m pytest -n auto --dist loadfile --cov=app --cov-fail-under=90",
"test:backend:profile": "uv run --directory backend python -m pytest --durations=25 --durations-min=0.2",
"test:frontend": "npm test -w frontend",
"lint": "concurrently \"npm run lint:backend\" \"npm run lint:frontend\"",
"lint:backend": "uv run --directory backend python -m ruff check .",
"lint:frontend": "npm run lint -w frontend",
"format": "concurrently \"npm run format:backend\" \"npm run format:frontend\"",
"format:backend": "uv run --directory backend python -m ruff format app tests",
"format:frontend": "npm run format -w frontend"
},
"devDependencies": {
"concurrently": "^9.0.0"
}
}