-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.05 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "AutomationHub",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"postinstall": "concurrently -n \"shared,client,server\" \"npm run shared-install\" \"npm run client-install\" \"npm run server-install\"",
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm run dev",
"client-install": "cd client && npm install",
"server": "cd server && npm run dev",
"server-install": "cd server && npm install",
"shared-install": "cd shared && npm install && npm run build",
"start": "concurrently -n \"client,server\" \"npm run client\" \"npm run server\"",
"lint": "concurrently -n \"client,server,shared\" \"cd client && npm run lint\" \"cd server && npm run lint\" \"cd shared && npm run lint\"",
"debug": "concurrently -n \"client,server\" \"npm run client\" \"cross-env NODE_OPTIONS=--inspect-brk=9229 npm run server\""
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"concurrently": "^9.1.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}