-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 781 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "modern",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install:all": "npm i && concurrently -n \"main,appA,appB\" -c \"gray.bgBlue,white.bgMagenta,white.bgGreen\" \"cd container-app && npm i\" \"cd app-a && npm i\" \"cd app-b && npm i\"",
"start": "concurrently -n \"main,appA,appB\" -c \"gray.bgBlue,white.bgMagenta,white.bgGreen\" \"npm run start-main\" \"npm run start-a\" \"npm run start-b\"",
"start-main": "cd container-app && npm run start:dev",
"start-a": "cd app-a && npm run start:lib",
"start-b": "cd app-b && npm run start:lib"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^5.1.0"
}
}