-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
15 lines (15 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "dfs",
"private": true,
"version": "1.0.0",
"description": "DFS dev launcher — one command to run the coordinator, a storage node, the web build, and the desktop app together.",
"scripts": {
"dev": "concurrently -k -n backend,node,web,app -c blue,magenta,green,yellow \"npm --prefix backend run start\" \"wait-on http://localhost:5000 && npm --prefix backend run node1\" \"npm --prefix frontend run dev\" \"wait-on http://localhost:5173 http://localhost:5000 && npm --prefix desktop start\"",
"dev:web": "concurrently -k -n backend,node,web -c blue,magenta,green \"npm --prefix backend run start\" \"wait-on http://localhost:5000 && npm --prefix backend run node1\" \"npm --prefix frontend run dev\"",
"tunnel": "concurrently -k -n backend,tunnel -c blue,yellow \"npm --prefix backend run start\" \"wait-on http://localhost:5000 && cloudflared tunnel --url http://localhost:5000\""
},
"devDependencies": {
"concurrently": "^9.1.2",
"wait-on": "^8.0.1"
}
}