-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.86 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
98
99
100
101
102
103
104
{
"name": "beersinthemiddle-v2",
"version": "0.1.0",
"license": "UNLICENSED",
"private": true,
"scripts": {
"build": "react-scripts build",
"start": "now dev --listen 127.0.0.1:8080",
"dev": "react-scripts start",
"eject": "react-scripts eject",
"now:prod": "now --prod -e FOURSQUARE_API_CLIENT=@foursquare_api_client -e FOURSQUARE_API_SECRET=@foursquare_api_secret -e GMAPS=@gmaps",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint . --ext .js",
"test": "react-scripts test"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@elastic/elasticsearch": "^7.6.0",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-brands-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@google/maps": "^1.0.0",
"atob": "^2.1.2",
"bulma": "^0.7.2",
"change-case": "^3.1.0",
"classnames": "^2.2.6",
"connect-history-api-fallback": "^1.5.0",
"connected-react-router": "^6.5.2",
"dotenv": "^8.1.0",
"emotion": "^10.0.23",
"formik": "^1.5.8",
"google-map-react": "^1.1.4",
"hash-obj": "^3.0.0",
"history": "^4.7.2",
"lodash.chunk": "^4.2.0",
"lodash.get": "^4.4.2",
"mathjs": "^6.2.1",
"moment": "^2.24.0",
"moment-duration-format": "^2.2.2",
"moment-timezone": "^0.5.23",
"node-fetch": "^2.6.0",
"node-sass": "^4.9.4",
"prop-types": "^15.6.2",
"randomcolor": "^0.5.4",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-ga": "^2.7.0",
"react-helmet": "^5.2.1",
"react-places-autocomplete": "^7.2.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.1",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"shortid": "^2.2.13",
"uuid": "^7.0.2"
},
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-react-app": "^5.0.1",
"eslint-config-xo-react": "^0.20.0",
"eslint-config-xo-space": "^0.21.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-tap": "^2.0.1",
"exenv": "^1.2.2",
"husky": "^3.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --config .prettierrc --write",
"git add"
],
"*.*": [
"prettier --config .prettierrc --write",
"git add"
]
}
}