forked from Tintef/react-google-places-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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
59
60
61
62
{
"name": "react-google-places-autocomplete",
"version": "4.0.1",
"description": "Google places autocomplete input for ReactJS.",
"main": "build/index.js",
"module": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"postbuild": "node ./build-utils/postBuild",
"lint": "eslint . --ext ts,tsx ."
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tintef/react-google-places-autocomplete.git"
},
"author": "Nicolás Tinte",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tintef/react-google-places-autocomplete/issues"
},
"homepage": "https://github.com/Tintef/react-google-places-autocomplete#readme",
"keywords": [
"react",
"google-places",
"places",
"autocomplete"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.2.5",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rollup": "^2.26.4",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.14.3",
"@types/google.maps": "^3.50.4",
"react-select": "^5.7.2",
"use-debounce": "^3.4.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}