-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·75 lines (75 loc) · 2.29 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
{
"name": "ailing-planet",
"version": "4.5.0",
"description": "COVID-19 timelapse visualization",
"homepage": "https://github.com/codingedward/ailing-planet",
"scripts": {
"build": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"watch:externalServer": "webpack --mode=development --watch --externalServer",
"bundle": "npm ci && npm run watch",
"bundle:externalServer": "npm ci && npm run watch:externalServer",
"production": "cross-env NODE_ENV=production webpack --mode=production",
"lint-sass": "sass-lint -v -q --format=compact",
"lint-js": "eslint --ext .js src/js/"
},
"keywords": [
"covid-19",
"visualization"
],
"author": "Edward Njoroge",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:codingedward/ailing-planet.git"
},
"engines": {
"node": "^10 || ^12 || >=14"
},
"dependencies": {
"autoprefixer": "^10.0.0",
"d3": "^6.2.0",
"frs-hide-scrollbar": "^1.0.0",
"hammerjs": "^2.0.8",
"nouislider": "^14.6.2",
"three": "^0.121.1",
"three-geojson-geometry": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"ajv": "^6.12.5",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.12",
"browser-sync-webpack-plugin": "2.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.1.0",
"postcss-loader": "^4.0.2",
"sass": "^1.26.11",
"sass-lint": "^1.13.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-cdn-plugin": "^3.3.1",
"webpack-cli": "^3.3.12"
}
}