This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
forked from KNMI/GeoWeb-FrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
208 lines (208 loc) · 5.93 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
{
"name": "geoweb-frontend",
"version": "1.0.10",
"description": "GeoWeb FrontEnd is the platform for the Early Warning Center and Weather Room",
"main": "index.js",
"engines": {
"node": ">=6.4.0",
"npm": "^3.0.0"
},
"scripts": {
"clean": "rimraf dist",
"compile": "better-npm-run compile",
"compile:prod": "better-npm-run compile",
"lint": "eslint src/**/*.jsx src/**/*.js src/**/*.json",
"start": "better-npm-run start",
"test": "better-npm-run test",
"test:dev": "better-npm-run test -- --watch",
"deploy": "better-npm-run deploy",
"deploy:dev": "better-npm-run deploy:dev",
"deploy:prod": "better-npm-run deploy:prod",
"deploy:prod-quick": "better-npm-run deploy:prod-quick",
"validate": "npm ls"
},
"betterScripts": {
"compile": {
"command": "node bin/compile",
"env": {
"DEBUG": "app:*"
}
},
"compile:prod": {
"command": "npm run compile",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"deploy": {
"command": "npm run lint && npm run test && npm run clean && npm run compile",
"env": {
"DEBUG": "app:*"
}
},
"deploy:dev": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy:prod": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"deploy:prod-quick": {
"command": "npm run clean && npm run compile",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"start": {
"command": "webpack-dev-server --hot --port 3000 --config config/webpack.config.js",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"test": {
"command": "cross-env nyc _mocha",
"env": {
"NODE_ENV": "test",
"DEBUG": "app:*"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/KNMI/GeoWeb-FrontEnd.git"
},
"author": "KNMI, based on work by David Zukowski <[email protected]> (http://zuko.me)",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.3.1",
"adaguc-webmapjs": "3.3.25",
"availity-reactstrap-validation": "^2.5.0",
"axios": "^0.18.0",
"bootstrap": "4.1.3",
"classnames": "^2.2.6",
"deep-diff": "^1.0.2",
"element-resize-event": "^3.0.3",
"es6-enum": "^1.1.0",
"fs-extra": "^7.0.1",
"immer": "^2.0.0",
"ip": "^1.1.5",
"lodash.clonedeep": "^4.5.0",
"lodash.escaperegexp": "^4.1.2",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.5.0",
"lodash.set": "^4.3.2",
"lodash.unset": "^4.5.2",
"moment": "^2.24.0",
"prop-types": "^15.7.1",
"rc-slider": "^8.6.5",
"react": "^16.8.1",
"react-bootstrap-typeahead": "^3.3.4",
"react-code-splitting": "^1.2.1",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.1",
"react-fa": "^5.0.0",
"react-hot-loader": "^4.6.5",
"react-json-edit": "^0.3.1",
"react-json-tree": "^0.11.2",
"react-moment": "^0.8.4",
"react-moment-proptypes": "^1.6.0",
"react-popper": "^1.3.3",
"react-redux": "^6.0.0",
"react-router": "^3.2.0",
"react-sortable-hoc": "^1.6.1",
"react-transition-group": "^2.5.3",
"reactstrap": "^7.1.0",
"reapop": "^2.0.1",
"reapop-theme-wybo": "^1.0.2",
"recharts": "^1.4.3",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-devtools": "^3.5.0",
"redux-thunk": "^2.3.0",
"uuid": "^3.3.2",
"validator": "^10.11.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-react-html-attrs": "^2.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"better-npm-run": "^0.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"debug": "^4.1.1",
"dirty-chai": "^2.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"fetch-mock": "^7.3.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^5.0.1",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^13.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"moxios": "^0.4.0",
"node-sass": "^4.12.0",
"nyc": "^13.3.0",
"precommit-hook": "^3.0.0",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.8.1",
"redbox-react": "^1.6.0",
"request-animation-frame": "^0.1.1",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"style-loader": "^0.23.1",
"transform-runtime": "0.0.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"yargs": "^13.1.0"
},
"pre-commit": [
"lint",
"test"
]
}