forked from qvvdata/GlobeMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "GlobeMap",
"version": "1.0.0",
"description": "",
"main": "src/GlobeMap.js",
"scripts": {
"build": "webpack -p --display-modules --color --config webpack.prod.js",
"dev": "webpack-dev-server --color --progress --config webpack.dev.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^5.0.0",
"eslint-config-qvvdata": "github:qvvdata/eslint-config-qvvdata",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1",
"write-file-webpack-plugin": "^4.5.0"
},
"dependencies": {
"d3-geo": "^1.11.3",
"d3-interpolate": "^1.3.2",
"d3-selection": "^1.4.0",
"d3-transition": "^1.2.0",
"debounce": "github:component/debounce",
"lodash": "^4.17.11",
"topojson-client": "^3.0.0",
"uglifyjs-webpack-plugin": "^2.1.2"
},
"eslintConfig": {
"extends": "eslint-config-qvvdata",
"rules": {
"no-param-reassign": 0,
"prefer-template": 0,
"arrow-body-style": 0,
"import/extensions": 0,
"quote-props": 0
},
"globals": {
"document": true,
"window": 0
}
}
}