-
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) · 819 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "modbus",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:client": "cd cpufan/client && npm run dev",
"start:server": "node cpufan/server/index.js",
"start:frontend": "cd windmill/frontend && npm run dev -- --host",
"start:backend": "cd windmill/backend && npx ts-node src/index.ts",
"start-cpu-fan": "concurrently \"npm run start:server\" \"npm run start:client\"",
"setup-cpu-fan": "npm i && cd cpufan/client && npm i && cd ../server && npm i ",
"setup-windmill": "npm i && cd windmill/frontend && npm i && cd ../backend && npm i ",
"start-windmill": "concurrently \"npm run start:backend\" \"npm run start:frontend \""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^8.2.2"
}
}