-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.12 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "head-hunter-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --coverage --watchAll",
"test:e2e": "cypress open",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.2.6",
"@chakra-ui/system": "^2.2.4",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/material": "^5.10.0",
"@mui/styled-engine": "^5.10.0",
"@reduxjs/toolkit": "^1.8.3",
"@types/file-saver": "^2.0.5",
"axios": "^0.27.2",
"cookies": "^0.8.0",
"file-saver": "^2.0.5",
"framer-motion": "^7.0.0",
"i": "^0.3.7",
"js-cookie": "^3.0.1",
"npm": "^8.16.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.33.1",
"react-icons": "^4.4.0",
"react-json-view": "^1.21.3",
"react-paginate": "^8.1.3",
"react-pagination": "^1.0.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-spinners": "^0.13.3",
"react-spring": "6.1.8",
"react-star-ratings": "^2.3.0",
"react-toastify": "^9.0.7",
"styled-components": "^5.3.5",
"typescript": "^4.7.4",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.45",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-star-ratings": "^2.3.0",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"customize-cra": "^1.0.0",
"cypress": "9.6",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-app-rewire-alias": "^1.1.7",
"react-app-rewired": "^2.2.1"
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/**/*.tsx",
"!<rootDir>/src/App.tsx",
"!<rootDir>/src/index.tsx",
"!<rootDir>/src/pages/index.ts",
"!<rootDir>/src/GlobalStyles.js"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"coverageReporters": [
"html",
"text"
]
},
"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"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}