-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "mui-address-autocomplete",
"version": "3.1.3",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/AddressAutocomplete.d.ts",
"scripts": {
"build": "NODE_ENV=production babel --extensions .ts,.tsx src/AddressAutocomplete.tsx --out-dir dist",
"test": "webpack-dev-server --mode development",
"custom-publish": "bash ./release-dist.bash"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zenoo/mui-address-autocomplete.git"
},
"bugs": {
"url": "https://github.com/Zenoo/mui-address-autocomplete/issues"
},
"homepage": "https://github.com/Zenoo/mui-address-autocomplete#readme",
"keywords": [
"react",
"address",
"autocomplete",
"google",
"maps",
"mui",
"material-ui",
"search"
],
"author": "Zenoo",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.16.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.5",
"@googlemaps/js-api-loader": "^1.16.6",
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"autosuggest-highlight": "^3.3.4",
"core-js": "^3.37.1",
"lodash.throttle": "^4.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-typescript": "^7.16.7",
"@types/autosuggest-highlight": "^3.2.0",
"@types/google.maps": "^3.55.9",
"@types/lodash.throttle": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-loader": "^8.2.3",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"typescript": "^4.6.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"standard-version": {
"scripts": {
"prerelease": "npm run build && git add dist"
}
}
}