forked from rameshsyn/react-location-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1011 Bytes
/
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
{
"name": "react-location-picker",
"version": "1.5.0",
"main": "lib/index.js",
"description": "A react component to pick a location using google maps",
"license": "MIT",
"git": "https://github.com/rameshsyn/react-location-picker",
"author": "Ramesh Syangtan <[email protected]>",
"types": "src/index.d.ts",
"scripts": {
"start": "webpack-dev-server",
"build:lib": "babel src -d lib",
"build:demo": "webpack -p"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"react-dom": "^16.2.0",
"webpack": "^3.6.0",
"react": "^16.2.0",
"webpack-dev-server": "^2.8.2"
},
"dependencies": {
"prop-types": "^15.6.1",
"react-google-maps": "^9.4.5"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"@types/googlemaps": "^3.37.6",
"@types/react": "^16.9.2"
}
}