-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "corona",
"version": "1.0.0",
"description": "Interactive animated COVID-19 map",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "npm run clean && webpack --env.production && npm run minify",
"lint": "tslint -p tsconfig.json 'src/**/*.ts'",
"prettier": "prettier --check \"./src/**/*.ts\"",
"clean": "rm -rf dist",
"minify": "npm run minify:html && npm run minify:css",
"minify:html": "html-minifier -c html-minifier.json -o dist/index.html dist/index.html",
"minify:css": "csso dist/style.css --output dist/style.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/date-and-time": "^0.13.0",
"@types/mapbox-gl": "^1.8.0",
"@types/node-fetch": "^2.5.5",
"copy-webpack-plugin": "^5.1.1",
"csso-cli": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"html-minifier": "^4.0.0",
"node-fetch": "^2.6.0",
"prettier": "^1.19.1",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-glsl-loader": "^1.0.1"
},
"dependencies": {
"csv-parse": "^5.0.4",
"date-and-time": "^0.13.1",
"mapbox-gl": "^1.8.1"
}
}