This repository has been archived by the owner on Mar 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
33 lines (33 loc) · 1.94 KB
/
package.json
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
27
28
29
30
31
32
33
{
"name": "data-portal",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "11.6.0"
},
"scripts": {
"dev-build-shared": "npm --prefix ./shared/vue_app install && npm --prefix ./shared/vue_app run build",
"dev-build-dashboard": "npm --prefix ./home/vue_app install && npm --prefix ./home/vue_app run build",
"dev-build-browse": "npm --prefix ./dat_core/vue_app install && npm --prefix ./dat_core/vue_app run build",
"dev-build-sim": "npm --prefix ./sim_core/vue_app install && npm --prefix ./sim_core/vue_app run build",
"build-map-core": "npm --prefix ./map_core/app install && npm --prefix ./map_core/app --only=dev install && npm --prefix ./map_core/app run build",
"prod-build-browse": "npm --prefix ./dat_core/vue_app install && npm --prefix ./dat_core/vue_app --only=dev install && npm --prefix ./dat_core/vue_app run build-prod",
"dev-build-map": "npm --prefix ./map_core/app install && npm --prefix ./map_core/app run build",
"prod-build-shared": "npm --prefix ./shared/vue_app install && npm --prefix ./shared/vue_app --only=dev install && npm --prefix ./shared/vue_app run build-prod",
"prod-build-dashboard": "npm --prefix ./home/vue_app install && npm --prefix ./home/vue_app --only=dev install && npm --prefix ./home/vue_app run build-prod",
"prod-build-sim": "npm --prefix ./sim_core/vue_app install && npm --prefix ./sim_core/vue_app --only=dev install && npm --prefix ./sim_core/vue_app run build-prod",
"heroku-postbuild": "npm run prod-build-shared && npm run prod-build-browse && npm run build-map-core && npm run prod-build-dashboard && npm run prod-build-sim"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nih-sparc/data-portal.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nih-sparc/data-portal/issues"
},
"homepage": "https://github.com/nih-sparc/data-portal#readme",
"dependencies": {}
}