This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
152 lines (152 loc) · 6.78 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "monarch-app",
"version": "3.0.0",
"description": "Monarch web application and API",
"scripts": {
"analyze": "npm run wbs-clean-dist && ANALYZE=1 node_modules/.bin/webpack --progress --colors",
"clean": "npm run wbs-clean-dist",
"devbackend": "node_modules/.bin/wait-on webpack-assets.json && USE_WEBPACK=1 NODE_PATH=./lib/monarch node_modules/.bin/nodemon -d 2 -V -- lib/monarch/web/webapp_launcher.js",
"devbackendprod": "node_modules/.bin/wait-on webpack-assets.json && USE_WEBPACK=1 NODE_PATH=./lib/monarch node_modules/.bin/nodemon -d 2 -V -- lib/monarch/web/webapp_launcher.js production",
"devbackendcgrb": "node_modules/.bin/wait-on webpack-assets.json && USE_WEBPACK=1 NODE_PATH=./lib/monarch node_modules/.bin/nodemon -d 2 -V -- lib/monarch/web/webapp_launcher.js cgrb",
"devfrontend": "LINTER=0 node_modules/.bin/webpack-dev-server --config ./webpack.config.js --progress --history-api-fallback",
"dev": "rm -f webpack-assets.json && (npm run devbackend &) && npm run devfrontend",
"devcgrb": "rm -f webpack-assets.json && (npm run devbackendcgrb &) && npm run devfrontend",
"devprod": "rm -f webpack-assets.json && (npm run devbackendprod &) && npm run devfrontend",
"build": "npm run wbs-build",
"mng-legacy-dev": "rm -f webpack-assets.json && (npm run mng-legacy-backend &) && npm run mng-dev",
"mng-legacy-backend": "node_modules/.bin/wait-on webpack-assets.json && USE_WEBPACK=1 USE_SPA=1 NODE_PATH=./lib/monarch node_modules/.bin/nodemon -d 2 -V -- lib/monarch/web/webapp_launcher.js",
"mng-dev": "USE_SPA=1 LINTER=0 node_modules/.bin/webpack-dev-server --config ./webpack.config.js --progress --history-api-fallback",
"mng-build": "USE_SPA=1 npm run wbs-build",
"mng-build-with-symlink": "MODE_LOCAL_SERVER=1 npm run mng-build && (cd dist/ && ln -s . dist)",
"start": "NODE_PATH=./lib/monarch node lib/monarch/web/webapp_launcher.js",
"startbeta": "NODE_PATH=./lib/monarch node lib/monarch/web/webapp_launcher.js beta",
"startprod": "NODE_PATH=./lib/monarch node lib/monarch/web/webapp_launcher.js production",
"wbs-dev": "USE_LOG_FETCH=0 USE_WEBPACK=1 NODE_PATH=./lib/monarch node_modules/.bin/nodemon -d 2 -V -- lib/monarch/web/webapp_launcher.js & LINTER=0 node_modules/.bin/webpack-dev-server --config ./webpack.config.js --history-api-fallback # --hot --inline",
"wbs-postinstall": "node ./wpcontributing/bin/install-warning-message.js",
"wbs-start": "LINTER=0 npm run wbs-webpack",
"wbs-watch": "npm run wbs-clean-dist && LINTER=0 ./node_modules/.bin/webpack --progress --watch",
"wbs-test": "npm run wbs-lint",
"wbs-lint": "./node_modules/.bin/eslint -c wbs.eslintrc wpsrc",
"wbs-lint-fix": "./node_modules/.bin/eslint --fix wpsrc --ext .js",
"wbs-clean-dist": "node ./wpbin/clean-dist.js",
"wbs-build": "npm run wbs-clean-dist && npm run wbs-webpack-build",
"wbs-build-prod": "npm run wbs-clean-dist && NODE_ENV=production npm run wbs-webpack-build-prod",
"wbs-build-prod-all": "DEVTOOLS=false npm run wbs-build-prod && NODE_ENV=production OPTIMIZE=false DEVTOOLS=true DIST_DIR=dist/devtools npm run wbs-webpack-build",
"wbs-postbuild-prod-all": "npm run wbs-generate-dist-readme",
"wbs-webpack": "./node_modules/.bin/webpack-dev-server --progress --colors --hot --inline",
"wbs-webpack-build": "LINTER=0 ./node_modules/.bin/webpack --progress",
"wbs-webpack-build-prod": "LINTER=0 ./node_modules/.bin/webpack --progress -p",
"wbs-generate-dist-readme": "node wpbin/generate-dist-readme.js",
"wbs-contributing-install": "./wpcontributing/bin/contributing-install.sh",
"wbs-contributing-test": "./wpcontributing/bin/contributing-test.sh",
"lint": "eslint --ext .js,.vue ui"
},
"keywords": [
"Monarch Initiative"
],
"author": "Monarch Initiative <[email protected]>",
"homepage": "https://monarchinitiative.org/",
"repository": {
"type": "git",
"url": "https://github.com/monarch-initiative/monarch-app"
},
"engines": {
"node": ">= 6.11.2",
"npm": ">= 5.3.0"
},
"bugs": {
"url": "https://github.com/monarch-initiative/monarch-app/issues"
},
"license": "BSD-3-Clause",
"devDependencies": {
"assets-webpack-plugin": "^3.9.6",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"browser-sync-webpack-plugin": "^2.2.2",
"chai": "^4.1.2",
"css-loader": "^1.0.0",
"d3-axis": "^1.0.12",
"d3-scale": "^2.1.2",
"d3-selection": "^1.3.2",
"del": "^3.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "7",
"eslint-plugin-vue": "^4.7.1",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"git-rev-sync": "^1.12.0",
"gulp": "^3.9.1",
"gulp-download": "0.0.1",
"gulp-jsoncombine": "^1.0.4",
"gulp-rename": "^1.4.0",
"gulp-shell": "^0.6.5",
"html-webpack-plugin": "^3.2.0",
"imports-loader": "^0.8.0",
"is-my-json-valid": "^2.19.0",
"json-loader": "^0.5.7",
"less-loader": "^4.1.0",
"lodash.template": "^4.4.0",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"my-local-ip": "^1.0.0",
"node-sass": "^4.9.3",
"nodemon": "^1.18.4",
"npmlog": "^4.1.2",
"postcss-loader": "^3.0.0",
"raw-loader": "^1.0.0-beta.0",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^1.3.3",
"style-loader": "^0.23.0",
"uglify-js": "^3.4.9",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.1",
"vue-loader": "^15.4.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"wait-on": "^3.0.1",
"webpack": "^4.17.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"async": "^2.6.1",
"axios": "^0.18.0",
"bbop": "^2.4.3",
"bbop-graph": "0.0.19",
"bbop-manager-golr": "0.0.12",
"bbop-registry": "0.0.3",
"bbop-response-golr": "0.0.8",
"bbop-rest-manager": "0.0.17",
"bbop-widget-set": "^2.5.12",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"font-awesome": "^4.7.0",
"golr-conf": "0.0.3",
"hapi": "^16.6.2",
"inert": "^4.2.1",
"jquery": "^3.3.1",
"jquery-ui": "^1.12.1",
"mustache": "^2.3.2",
"phenogrid": "^1.3.11",
"popper.js": "^1.14.4",
"pup-tent": "^0.9.10",
"request": "^2.88.0",
"underscore": "^1.9.1",
"vue": "^2.5.17",
"vue-form-wizard": "^0.8.4",
"vue-good-table": "^2.13.3",
"vue-router": "^3.0.1",
"wait.for": "^0.6.6",
"xml2js": "^0.4.19"
}
}