-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 KB
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": "react-amap-next",
"version": "1.2.2",
"description": "这是高德地图的react版本,相比react-amap更加简单,更加贴合react用户",
"keywords": [
"react",
"react-amap",
"react-amap-next",
"amap",
"高德地图"
],
"homepage": "https://github.com/windsome/react-amap-next",
"author": "windsome.feng <36081189@qq.com> (https://github.com/windsome/)",
"scripts": {
"build:lib": "cross-env BABEL_ENV=es babel src/lib --out-dir lib",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-scripts": "2.0.5"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.4",
"prop-types": "^15.6.0"
},
"babel": {
"env": {
"es": {
"presets": [
[
"env",
{
"modules": false
}
],
"react"
],
"plugins": [
"transform-object-rest-spread",
"transform-class-properties"
]
}
}
}
}