-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.26 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
79
80
81
82
83
84
85
86
87
88
{
"name": "phonebook",
"version": "0.1.0",
"private": true,
"dependencies": {
"@hookform/resolvers": "^2.8.5",
"@loadable/component": "^5.15.2",
"@reduxjs/toolkit": "^1.7.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"axios": "^0.24.0",
"formik": "^2.2.9",
"gh-pages": "^3.2.3",
"i18next": "^21.6.5",
"i18next-browser-languagedetector": "^6.1.2",
"json-server": "^0.17.0",
"notiflix": "^3.2.2",
"prop-types": "^15.7.2",
"radium": "^0.26.1",
"react": "^17.0.2",
"react-animations": "^1.0.0",
"react-beautiful-dnd": "^13.1.0",
"react-burger-menu": "^3.0.6",
"react-debounce-input": "^3.2.5",
"react-dom": "^17.0.2",
"react-editext": "^4.2.1",
"react-hook-form": "^7.22.2",
"react-i18next": "^11.15.3",
"react-loader-spinner": "^5.0.5",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-transition-group": "^4.4.2",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"web-vitals": "^1.1.2",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"predeploy": "npm run build",
"deploy": "netlify deploy -p",
"stylelint": "stylelint \"**/*.(s)css\" --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^7.11.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"redux-devtools-extension": "^2.13.9",
"sass": "^1.47.0",
"stylelint": "^14.2.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"stylelint-order-config-standard": "^0.1.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,css,md,json,scss}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}