forked from openfoodfacts/openfoodfacts-hungergames-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1001 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
37
38
39
40
41
42
43
{
"name": "hunger-game",
"description": "One click categorizer for Open Food Facts",
"private": true,
"author": "Arnaud Barré <arnaud.barre72@gmail.com>",
"scripts": {
"start": "react-scripts start",
"countries": "node update-countries.js",
"build": "yarn build:react && yarn build:bundle",
"build:react": "react-scripts build",
"build:bundle": "webpack"
},
"dependencies": {
"axios": "^0.18.0",
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"http-proxy-middleware": "^0.19.1",
"husky": "^1.3.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"react-medium-image-zoom": "^3.0.16",
"react-scripts": "2.1.8",
"webpack-cli": "^3.3.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"browserslist": [
">1%",
"not ie 11"
]
}