-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.19 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.19 KB
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
{
"name": "extensive-react-skeleton",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"@material-ui/core": "4.3.2",
"@material-ui/icons": "4.2.1",
"antd": "^3.23.6",
"axios": "^0.19.0",
"bootstrap-css-only": "^4.3.1",
"classnames": "2.2.6",
"customize-cra": "^0.8.0",
"formik": "^1.5.8",
"history": "^4.9.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mdbreact": "^4.21.0",
"moment": "2.24.0",
"moment-timezone": "^0.5.27",
"node-sass": "^4.12.0",
"nouislider": "14.0.2",
"prop-types": "^15.7.2",
"react": "^16.10.1",
"react-app-rewired": "^2.1.3",
"react-datetime": "2.16.3",
"react-dom": "^16.10.1",
"react-moment": "^0.9.6",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-slick": "0.25.2",
"react-swipeable-views": "0.13.3",
"react-transition-group": "^4.3.0",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"source-map-explorer": "^2.1.0",
"yup": "^0.27.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn validate",
"pre-push": "yarn validate"
}
},
"scripts": {
"lint": "./node_modules/.bin/eslint --fix src",
"validate": "npm-run-all --parallel lint",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-plugin-import": "^1.12.2",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.8",
"npm-run-all": "^4.1.5",
"sass-lint": "^1.13.1",
"serve": "^11.1.0"
}
}