-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2 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
{
"name": "cra-template-mui",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "react-app-rewired build",
"eject": "react-app-rewired eject",
"format": "npx prettier --write 'src/**/*.{js,jsx}'",
"lint": "npx eslint --fix src/**/*.{js,jsx} --no-warn-ignored",
"lint:style": "npx stylelint --fix --ignore-path .gitignore '**/*.(js|jsx)'",
"start": "react-app-rewired start",
"test": "react-app-rewired test"
},
"jest": {
"collectCoverageFrom": [
"src/helpers/*.js",
"src/**/helpers/*.js",
"!<rootDir>/node_modules/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"npm run lint:style"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.17",
"@mui/material": "^5.15.17",
"@reduxjs/toolkit": "^2.2.4",
"axios": "^1.6.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-jss": "^10.10.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"react-app-rewire-alias": "^1.1.7",
"react-app-rewired": "^2.2.1",
"stylelint": "^16.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-styled-components-order": "^1.0.6"
}
}