forked from ESRIgeomap/geomap
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "geomap",
"private": true,
"scripts": {
"start": "cross-env PORT=8013 HOST=localhost umi dev",
"build": "umi build",
"test": "umi test",
"lint": "eslint --ext .js src mock tests"
},
"dependencies": {
"@geomap/utils": "^0.2.0",
"classnames": "^2.2.6",
"echarts": "^4.2.1",
"esri-loader": "^2.9.1",
"jquery": "^3.4.1",
"lodash": "^4.17.11",
"nprogress": "^0.2.0",
"qs": "^6.7.0",
"rc-queue-anim": "^1.6.10",
"rc-scroll-anim": "^2.5.6",
"rc-tween-one": "^2.2.19",
"react": "^16.8.6",
"react-color": "^2.17.0",
"react-custom-scrollbars": "^4.2.1",
"react-document-title": "^2.0.3",
"react-dom": "^16.8.6",
"react-github-button": "^0.1.11",
"react-resize-detector": "^4.2.0",
"xmldom": "^0.1.27"
},
"devDependencies": {
"@geomap/utils": "^0.2.0",
"babel-eslint": "^9.0.0",
"cross-env": "^5.1.4",
"dojo-typings": "^1.11.9",
"eslint": "^5.4.0",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"react-test-renderer": "^16.7.0",
"umi": "^2.6.3",
"umi-plugin-react": "^1.6.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
}
}