forked from rameshsyn/react-location-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1010 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": "@beegru/react-location-picker",
"version": "1.5.9",
"main": "lib/index.js",
"description": "A react component to pick a location using google maps",
"license": "MIT",
"git": "https://github.com/Beegru/react-location-picker",
"author": "Siddhant Vinchurkar <siddhantvinchurkar@gmail.com>",
"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.3",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"react-dom": "^18.3.1",
"webpack": "^5.91.0",
"react": "^18.3.1",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"prop-types": "^15.8.1",
"@beegru/react-google-maps": "^9.4.11"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@types/googlemaps": "^3.43.3",
"@types/react": "^18.3.1"
}
}