-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.19 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
{
"name": "ratio",
"version": "1.0.0",
"main": "index.js",
"author": "Mark K Cowan",
"license": "MIT",
"dependencies": {
"d3": "^5.15.0",
"d3-color": "^1.4.0",
"d3-time": "^1.1.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"pako": "^1.0.11"
},
"scripts": {
"lint": "tslint --project .",
"compile": "tsc --build tsconfig.json && webpack --config webpack.config.js --mode production",
"copy": "bash -ec \"cp -v src/*.{html,css} results/out.json.brotli bin/\"",
"build": "yarn compile && yarn copy",
"etl": "ts-node pre/etl.ts ../csse_covid_19_daily_reports",
"extract": "bash -ec \"brotli --decompress --input bin/out.json.brotli --output bin/out.json && gzip --best bin/out.json\"",
"serve": "http-server bin/ -p 8000",
"start": "yarn build && yarn extract && yarn serve"
},
"devDependencies": {
"@types/d3": "^5.7.2",
"@types/lodash": "^4.14.149",
"@types/moment": "^2.13.0",
"@types/node": "^13.9.1",
"@types/pako": "^1.0.1",
"http-server": "^0.12.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}