-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 995 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "sentinelops-root",
"version": "1.0.0",
"scripts": {
"dev": "concurrently \"npm run dev --workspace=sentinelops-frontend\" \"cd sentinelops-backend && python3 -m uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload\"",
"dev:docker": "concurrently \"npm run dev --workspace=sentinelops-frontend\" \"cd sentinelops-backend && docker compose up\"",
"install-all": "npm install && cd sentinelops-frontend && npm install && cd ../sentinelops-backend && pip install -r requirements.txt",
"backend": "cd sentinelops-backend && python3 -m uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload",
"backend:docker": "cd sentinelops-backend && docker compose up",
"frontend": "npm run dev --workspace=sentinelops-frontend",
"lint": "npm run lint --workspace=sentinelops-frontend",
"build": "npm run build --workspace=sentinelops-frontend"
},
"workspaces": [
"sentinelops-frontend"
],
"devDependencies": {
"concurrently": "^8.2.2"
}
}