-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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
{
"name": "gitdrafts",
"version": "1.0.0",
"description": "search breweries within the United States",
"main": "index.js",
"scripts": {
"dev": "parcel src/index.html",
"build": "NODE_ENV=production parcel build dist/index.html --public-url ./ && echo '/* /index.html 200' | cat >build/_redirects",
"format": "prettier \"src/**/*.{js,html}\" --write",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charley81/gitDrafts.git"
},
"keywords": [
"beer",
"draft",
"brewery"
],
"author": "Chris Harley",
"license": "MIT",
"bugs": {
"url": "https://github.com/charley81/gitDrafts/issues"
},
"homepage": "https://github.com/charley81/gitDrafts#readme",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.1",
"eslint-plugin-react-hooks": "^4.0.4",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^10.0.27",
"@emotion/core": "^10.0.28",
"@reach/router": "^1.3.4",
"@react-google-maps/api": "^1.9.7",
"@types/googlemaps": "^3.39.8",
"@types/markerclustererplus": "^2.1.33",
"@types/react": "^16.9.41",
"axios": "^0.19.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-google-maps": "^9.4.5",
"react-redux": "^7.2.0",
"redux": "^4.0.5"
},
"browserslist": [
"last 2 Chrome versions"
]
}