-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "linbox",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"classnames": "^2.2.6",
"css": "^2.2.4",
"dayjs": "^1.8.12",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"fetch-jsonp": "^1.1.3",
"i18next": "^15.0.9",
"i18next-browser-languagedetector": "^3.0.1",
"lodash.debounce": "^4.0.8",
"lodash.memoize": "^4.1.2",
"react": "^16.8.6",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.1.2",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.4",
"react-i18next": "^10.8.1",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"react-select": "^2.4.3",
"urlsafe-base64": "^1.0.0",
"uuid": "^3.3.2"
},
"scripts": {
"start": "react-app-rewired start",
"lint": "$(npm bin)/eslint --ext .js --ext .jsx ./",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"husky": "^1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}