-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 751 Bytes
/
Copy pathpackage.json
File metadata and controls
17 lines (17 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"devDependencies": {
"concurrently": "^9.2.1",
"cross-env": "^10.1.0"
},
"scripts": {
"install:all": "npm install --prefix frontend && npm install --prefix runner && npm install",
"update:all": "npm update --prefix frontend && npm update --prefix runner && npm update",
"setup": "docker compose build sandbox",
"prestart": "npm run setup",
"start": "concurrently \"docker compose up redis postgres\" \"npm --prefix frontend run dev -- --host\" \"cross-env REDIS_URL=redis://127.0.0.1:6379 node runner/worker.js\"",
"build": "concurrently \"docker compose up redis postgres\" \"cross-env REDIS_URL=redis://127.0.0.1:6379 node runner/worker.js\"",
"stop": "docker compose down"
},
"dependencies": {
}
}