-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 924 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "sentinel-root",
"version": "1.0.0",
"description": "Sentinel Logic",
"scripts": {
"install:all": "npm install --prefix frontend && cd backend && .venv\\Scripts\\pip install -r requirements.txt",
"dev": "taskkill //F //IM python.exe 2>nul || true && concurrently \"npm run dev:redis\" \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:redis": ".\\redis-windows\\redis-server.exe .\\redis-windows\\redis.windows.conf || echo \"Redis already running or failed to start\"",
"dev:backend": "cd backend && python -m uvicorn main:app --reload --host 0.0.0.0 --port 8000",
"dev:frontend": "cd frontend && npm run dev -- --port 3000",
"dev:frontend-simple": "cd frontend && npm run dev:next",
"dev:no-redis": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"build": "cd frontend && npm run build"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}