-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
{
"name": "bajan-salary",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material/react-card": "^0.7.1",
"@material/react-layout-grid": "^0.7.1",
"@material/react-material-icon": "^0.7.1",
"@material/react-select": "^0.7.1",
"@material/react-text-field": "^0.7.1",
"@material/react-top-app-bar": "^0.7.1",
"bootstrap": "^4.3.1",
"eslint": "5.12.0",
"husky": "^1.3.0",
"lint-staged": "^8.1.0",
"node-sass": "^4.11.0",
"prettier": "^1.15.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-scripts": "^2.1.1",
"reactstrap": "^6.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src/ --fix"
},
"devDependencies": {
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"pretty-quick": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"npm run lint",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}