-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "ez-planner",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.0",
"@material-ui/icons": "^3.0.2",
"axios": "^0.18.0",
"firebase": "^5.11.1",
"connected-react-router": "^6.6.1",
"history": "^4.10.1",
"material-ui-icons": "^1.0.0-beta.36",
"qs": "^6.6.0",
"react": "^16.12.0",
"react-bootstrap": "^0.32.4",
"react-csv": "^1.1.1",
"react-dom": "^16.12.0",
"react-ga": "^2.5.6",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "3.3.0",
"react-swipeable-views": "^0.13.1",
"react-virtualized": "^9.21.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"snyk": "^1.265.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js src/**/*.jsx",
"fix-code": "prettier-eslint --write 'src/**/*.{js,jsx}' ",
"fix-styles": "prettier-stylelint --write 'src/**/*.{css,scss}' ",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-eslint": "9.0.0",
"eslint": "5.6.0",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"prettier-stylelint": "^0.4.2"
},
"snyk": true
}