forked from hodcroftlab/covariants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
333 lines (333 loc) · 13.5 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
{
"name": "covariants",
"version": "0.1.0",
"description": "SARS-CoV-2 Mutations of Interest",
"license": "MIT",
"scripts": {
"data": "cd .. && python3 scripts/convert_to_web_app_json.py",
"clear": "node ./lib/clear.js",
"dev": "nodemon --config config/nodemon/dev.json",
"dev:start": "yarn install && yarn run monkey-patch && yarn dev:nowatch || cd .",
"dev:nowatch": "cross-env NODE_ENV=development BABEL_ENV=development NODE_OPTIONS=--max_old_space_size=8192 babel-node --extensions \".js,.ts\" -- node_modules/.bin/next dev --hostname 0.0.0.0 --port 3000",
"dev:clean": "rimraf '.build/development/{*,.*}' 'node_modules/.cache'",
"prod:build": "yarn run monkey-patch && yarn run next:build && yarn run next:export",
"prod:build:ci": "yarn run prod:build",
"prod:build:vercel": "cp .env.vercel .env && yarn install && yarn prod:build && cp .build/production/tmp/routes-manifest.json .build/production/web/",
"prod:_build": "yarn run next:build && yarn run next:export",
"next:build": "cross-env NODE_ENV=production BABEL_ENV=production NODE_OPTIONS=--max_old_space_size=8192 babel-node --extensions \".js,.ts\" -- node_modules/.bin/next build",
"next:export": "cross-env NODE_ENV=production BABEL_ENV=production NODE_OPTIONS=--max_old_space_size=8192 babel-node --extensions \".js,.ts\" -- node_modules/.bin/next export -o \".build/production/web\" && cp .build/production/tmp/robots.txt .build/production/web/robots.txt",
"next:build:profile": "PROFILE=1 yarn next:build --profile",
"prod:clean": "rimraf '.build/production/{*,.*}' 'node_modules/.cache'",
"prod:serve:nowatch": "babel-node --extensions \".ts\" ./tools/server/server.ts",
"prod:serve": "nodemon --config config/nodemon/serve.json",
"prod:watch": "nodemon --config config/nodemon/prod.json",
"prod:start": "yarn prod:build && yarn prod:serve || cd .",
"prod:build:profile": "yarn run monkey-patch && yarn run next:build:profile && yarn run next:export",
"prod:watch:profile": "nodemon --config config/nodemon/profile.json",
"prod:start:profile": "yarn prod:build:profile && yarn prod:serve || cd .",
"analyze": "cross-env ANALYZE=1 yarn prod:build",
"analyze:clean": "rimraf '.build/analyze/*' 'node_modules/.cache'",
"analyze:watch": "nodemon --config config/nodemon/analyze.json",
"lint": "run-s -c eslint tsc",
"lint:fix": "run-s -c eslint:fix tsc",
"lint:watch": "nodemon --config config/nodemon/lint.json",
"lint:fix:watch": "nodemon --config config/nodemon/lint.fix.json",
"lint:ci": "run-s -c eslint:ci tsc",
"eslint": "eslint --format codeframe \"**/*.{js,jsx,ts,tsx}\"",
"eslint:i18n": "eslint --config .eslintrc.i18next.js --format codeframe \"src/{components,pages}/**/*.{js,jsx,ts,tsx}\"",
"eslint:fix": "yarn eslint --fix",
"eslint:watch": "nodemon --config config/nodemon/eslint.json",
"eslint:fix:watch": "nodemon --config config/nodemon/eslint.fix.json",
"eslint:ci": "yarn eslint --max-warnings=0",
"tsc": "tsc --project tsconfig.json --noEmit",
"tsc:watch": "yarn tsc --watch",
"stylelint": "stylelint \"**/*.*(css|scss)\"",
"stylelint:fix": "yarn stylelint --fix",
"stylelint:watch": "nodemon --config config/nodemon/stylelint.json",
"stylelint:fix:watch": "nodemon --config config/nodemon/stylelint.fix.json",
"format": "prettier --check \"**/*.{js,jsx,ts,tsx,json,html,css,less,scss,yml,yaml}\"",
"format:fix": "yarn format --write",
"test": "yarn test:nowatch --watch --verbose ",
"test:nowatch": "jest --config=config/jest/jest.config.js --passWithNoTests",
"test:lint": "WITH_ESLINT=1 yarn test",
"test:lint:nowatch": "WITH_ESLINT=1 yarn test:nowatch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --config=config/jest/jest.config.js --runInBand --watch",
"test:coverage": "yarn test:nowatch --coverage",
"run:node": "cross-env NODE_ENV=development BABEL_ENV=development babel-node --extensions '.ts'",
"run:node:prod": "cross-env NODE_ENV=production BABEL_ENV=production babel-node --extensions '.ts'",
"monkey-patch": "bash tools/patch-next.sh",
"stills": "yarn run:node tools/generateStillImages.ts"
},
"dependencies": {
"animate.css": "4.1.0",
"autoprefixer": "9.8.6",
"bootstrap": "4.5.2",
"bootstrap-icons": "1.2.2",
"classnames": "2.2.6",
"connected-next-router": "3.1.0",
"core-js": "3.6.5",
"css.escape": "1.5.1",
"fast-copy": "2.1.0",
"history": "5.0.0",
"immer": "7.0.8",
"immutable": "3.8.2",
"is-absolute-url": "3.0.3",
"lodash": "4.17.20",
"luxon": "1.25.0",
"marked": "1.1.1",
"moment": "2.27.0",
"next": "10.0.1",
"next-compose-plugins": "2.2.0",
"papaparse": "5.3.0",
"polished": "3.6.6",
"prop-types": "15.7.2",
"re-reselect": "4.0.0",
"react": "16.13.1",
"react-aspect-ratio": "1.0.46",
"react-dom": "16.13.1",
"react-error-boundary": "2.3.1",
"react-gif-player": "0.4.2",
"react-helmet": "6.1.0",
"react-icons": "3.11.0",
"react-loader-spinner": "3.1.14",
"react-redux": "7.2.1",
"react-share": "4.3.1",
"react-toggle": "4.1.1",
"reactstrap": "8.5.1",
"recharts": "2.0.0-beta.8",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-saga": "1.1.3",
"redux-saga-test-plan": "4.0.0-rc.3",
"redux-thunk": "2.3.0",
"reflect-metadata": "0.1.13",
"regenerator-runtime": "0.13.7",
"reselect": "4.0.0",
"serialize-javascript": "5.0.1",
"styled-components": "5.1.1",
"typeface-open-sans": "0.0.75",
"url-join": "4.0.1"
},
"devDependencies": {
"@babel/core": "7.11.5",
"@babel/node": "7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-decorators": "7.10.5",
"@babel/plugin-proposal-numeric-separator": "7.10.4",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-flow-strip-types": "7.10.4",
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"@babel/plugin-transform-react-constant-elements": "7.10.4",
"@babel/plugin-transform-react-inline-elements": "7.10.4",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/register": "7.11.5",
"@babel/runtime": "7.11.2",
"@babel/runtime-corejs3": "7.11.2",
"@mdx-js/loader": "1.6.22",
"@mdx-js/react": "1.6.22",
"@next/mdx": "10.0.4",
"@nuxt/friendly-errors-webpack-plugin": "2.5.0",
"@primer/css": "15.1.0",
"@schemastore/package": "0.0.6",
"@svgr/webpack": "5.4.0",
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "10.4.9",
"@testing-library/user-event": "12.1.3",
"@types/classnames": "2.2.10",
"@types/compare-versions": "3.3.0",
"@types/compression-webpack-plugin": "4.0.0",
"@types/connect-history-api-fallback": "1.3.3",
"@types/copy-webpack-plugin": "6.4.0",
"@types/express": "4.17.8",
"@types/extra-watch-webpack-plugin": "1.0.1",
"@types/friendly-errors-webpack-plugin": "0.1.2",
"@types/fs-extra": "9.0.1",
"@types/history": "4.7.7",
"@types/jest": "26.0.12",
"@types/jest-axe": "3.5.0",
"@types/js-yaml": "3.12.5",
"@types/lodash": "4.14.161",
"@types/lodash-webpack-plugin": "0.11.4",
"@types/luxon": "1.25.0",
"@types/mdx-js__react": "1.5.2",
"@types/node": "14.6.2",
"@types/papaparse": "5.2.2",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/react-helmet": "6.1.0",
"@types/react-loader-spinner": "3.1.3",
"@types/react-redux": "7.1.9",
"@types/react-toggle": "4.0.2",
"@types/reactstrap": "8.5.1",
"@types/redux-logger": "3.0.8",
"@types/redux-testkit": "1.0.5",
"@types/rimraf": "3.0.0",
"@types/semver": "7.3.3",
"@types/serialize-javascript": "5.0.0",
"@types/styled-components": "5.1.2",
"@types/terser-webpack-plugin": "4.1.0",
"@types/url-join": "4.0.0",
"@types/webpack": "4.41.22",
"@types/webpackbar": "4.0.0",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"@typescript-eslint/typescript-estree": "4.0.1",
"allow-methods": "2.0.0",
"babel-jest": "26.3.0",
"babel-loader": "8.1.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-module-resolver": "4.0.0",
"babel-plugin-parameter-decorator": "1.0.16",
"babel-plugin-redux-saga": "1.1.2",
"babel-plugin-smart-webpack-import": "1.7.0",
"babel-plugin-strip-function-call": "1.0.2",
"babel-plugin-styled-components": "1.11.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-plugin-transform-typescript-metadata": "0.3.0",
"babel-plugin-typescript-to-proptypes": "1.4.0",
"compression-webpack-plugin": "5.0.1",
"connect-history-api-fallback": "1.6.0",
"copy-webpack-plugin": "6.4.1",
"cross-env": "7.0.2",
"css-loader": "5.0.1",
"dotenv": "8.2.0",
"eslint": "7.8.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-airbnb-typescript": "9.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-import-resolver-ts": "0.4.2",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-loader": "4.0.2",
"eslint-plugin-array-func": "3.1.7",
"eslint-plugin-cflint": "1.0.0",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jest-dom": "3.2.1",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-lodash": "7.1.0",
"eslint-plugin-no-loops": "0.3.0",
"eslint-plugin-no-secrets": "0.6.8",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-only-ascii": "0.0.0",
"eslint-plugin-only-warn": "1.0.2",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"eslint-plugin-react-redux": "3.2.0",
"eslint-plugin-redux-saga": "1.1.3",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-sonarjs": "0.5.0",
"eslint-plugin-unicorn": "21.0.0",
"express": "4.17.1",
"express-static-gzip": "2.0.8",
"extra-watch-webpack-plugin": "1.0.3",
"fasy": "8.0.4",
"file-loader": "6.1.0",
"fork-ts-checker-webpack-plugin": "5.1.0",
"fs-extra": "9.0.1",
"gif-frames": "1.0.1",
"identity-obj-proxy": "3.0.0",
"is-interactive": "1.0.0",
"jest": "26.4.2",
"jest-axe": "3.5.0",
"jest-chain": "1.1.5",
"jest-extended": "0.11.5",
"jest-raw-loader": "1.0.1",
"jest-runner-eslint": "0.10.0",
"jest-styled-components": "7.0.3",
"jest-transformer-mdx": "2.2.0",
"jest-watch-typeahead": "0.6.0",
"js-yaml": "3.14.0",
"json-loader": "0.5.7",
"lodash-webpack-plugin": "0.11.5",
"map.prototype.tojson": "0.1.3",
"next-transpile-modules": "4.1.0",
"nodemon": "2.0.4",
"npm-run-all": "4.1.5",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "2.1.1",
"raw-loader": "4.0.1",
"redux-devtools-extension": "2.13.8",
"redux-immutable-state-invariant": "2.1.0",
"redux-testkit": "1.0.6",
"remark-autolink-headings": "6.0.1",
"remark-breaks": "2.0.1",
"remark-images": "2.0.0",
"remark-math": "3.0.1",
"remark-slug": "6.0.0",
"remark-toc": "7.0.0",
"rimraf": "3.0.2",
"sass": "1.26.10",
"set.prototype.tojson": "0.1.1",
"source-map-loader": "1.1.0",
"style-loader": "2.0.0",
"svgo": "1.3.2",
"terser": "5.3.0",
"terser-webpack-plugin": "4.1.0",
"ts-essentials": "7.0.0",
"ts-jest": "26.3.0",
"ts-node": "9.0.0",
"typed-redux-saga": "1.2.0",
"typescript": "4.0.2",
"url-loader": "4.1.0",
"utility-types": "3.10.0",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpackbar": "4.0.0"
},
"resolutions": {
"@babel/core": "7.11.5",
"@babel/node": "7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-decorators": "7.10.5",
"@babel/plugin-proposal-numeric-separator": "7.10.4",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-flow-strip-types": "7.10.4",
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"@babel/plugin-transform-react-constant-elements": "7.10.4",
"@babel/plugin-transform-react-inline-elements": "7.10.4",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/register": "7.11.5",
"@babel/runtime": "7.11.2",
"@babel/runtime-corejs3": "7.11.2",
"babel-jest": "26.3.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-module-resolver": "4.0.0",
"babel-plugin-redux-saga": "1.1.2",
"babel-plugin-smart-webpack-import": "1.7.0",
"babel-plugin-styled-components": "1.11.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-plugin-transform-typescript-metadata": "0.3.0",
"babel-plugin-typescript-to-proptypes": "1.3.2",
"compression-webpack-plugin": "5.0.1",
"core-js": "3.6.5",
"css-loader": "5.0.1",
"lodash": "4.17.20",
"marked": "1.1.1",
"moment": "2.27.0",
"papaparse": "5.2.0",
"postcss-loader": "3.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-error-boundary": "2.2.3",
"react-redux": "7.2.1",
"redux": "4.0.5",
"reflect-metadata": "0.1.13",
"style-loader": "2.0.0",
"styled-components": "5.1.1",
"svgo": "1.3.2",
"webpack": "4.44.1"
}
}