-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 876 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "dcsplan",
"private": true,
"version": "1.0.0",
"description": "A flight planning tool for flight simulators",
"scripts": {
"install:backend": "cd packages/backend && python3 -m venv venv && ./venv/bin/pip install -r requirements.txt",
"dev": "concurrently \"pnpm --filter frontend dev\" \"pnpm dev:backend\"",
"dev:frontend": "pnpm --filter frontend dev",
"dev:backend": "cd packages/backend && ./venv/bin/python -m uvicorn main:app --reload",
"test:backend": "cd packages/backend && ./venv/bin/python -m pytest -v",
"test:backend:watch": "cd packages/backend && ./venv/bin/python -m ptw -- -v",
"test:frontend": "pnpm --filter frontend test",
"test": "pnpm test:backend && pnpm test:frontend"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.15"
}
}