-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 740 Bytes
/
package.json
File metadata and controls
15 lines (15 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "federated-app-shell",
"private": true,
"scripts": {
"postinstall": "(cd appshell && npm install); (cd property && npm install); (cd search && npm install); (cd favorites && npm install)",
"start": "concurrently \"cd appshell; npm start;\" \"cd property; npm start;\" \"cd search; npm start;\" \"cd favorites; npm start;\"",
"docker:pull": "docker pull scriptedalchemy/mf-dashboard",
"docker:run": "docker run -p 3000:3000 --sig-proxy=true scriptedalchemy/mf-dashboard:latest",
"docker:stop": "docker kill $(docker ps -q --filter ancestor=scriptedalchemy/mf-dashboard:latest)",
"docker:demo": "npm run docker:pull && npm run docker:run"
},
"devDependencies": {
"concurrently": "^5.1.0"
}
}