-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.24 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
{
"name": "politicos-react",
"version": "0.3.0",
"author": "Marcelo Jorge Vieira <[email protected]>",
"license": "AGPL-1.0",
"homepage": "http://olhoneles.github.io/politicos-react/",
"dependencies": {
"@material-ui/core": "^3.3.2",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"es6-promise-debounce": "^1.0.1",
"gh-pages": "^2.0.1",
"lodash": "^4.17.11",
"react": "^16.6.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.6.0",
"react-redux": "^5.1.0",
"react-scripts": "2.1.1",
"react-select": "^2.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.14.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}