-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-app-js-boilerplate",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"app-location": "^1.1.1",
"axios": "^0.21.1",
"axios-middleware": "^0.3.1",
"axios-mock-adapter": "^1.18.2",
"classnames": "^2.2.6",
"deepmerge": "^4.2.2",
"final-form": "^4.20.1",
"history": "4.10.1",
"husky": "^4.2.5",
"i18next": "^19.6.3",
"i18next-browser-languagedetector": "^5.0.1",
"libphonenumber-js": "^1.7.56",
"lodash-es": "^4.17.20",
"mobx": "^5.15.5",
"mobx-react-lite": "^2.0.7",
"mobx-state-tree": "^3.17.2",
"query-string": "^6.13.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-final-form": "^6.5.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.7.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-snapshot": "^1.3.0",
"uuid": "^8.3.0",
"web-vitals": "^0.2.4",
"yup": "^0.29.3"
},
"devDependencies": {
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.7",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postbuild": "react-snapshop"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}