-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.22 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": "react-cra-mui-front-end",
"version": "1.0.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@hookform/resolvers": "^2.8.1",
"@mui/icons-material": "^5.0.0",
"@mui/lab": "^5.0.0-alpha.75",
"@mui/material": "^5.0.0",
"@mui/styles": "^5.1.1",
"@mui/x-data-grid": "^5.0.0",
"@types/js-cookie": "^3.0.0",
"@types/node": "^16.0.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@zxcvbn-ts/core": "^1.0.0",
"@zxcvbn-ts/language-common": "^1.0.0",
"@zxcvbn-ts/language-en": "^1.0.0",
"env-cmd": "^10.1.0",
"js-cookie": "^3.0.1",
"notistack": "^2.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.15.3",
"react-router-dom": "^5.2.1",
"react-scripts": "^5.0.0",
"victory": "^36.1.0",
"web-vitals": "^2.0.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@commitlint/cli": "^14.0.0",
"@commitlint/config-conventional": "^14.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.0.0",
"@types/jest": "^27.0.0",
"husky": "^7.0.2",
"msw": "^0.35.0",
"typescript": "^4.4.2"
},
"scripts": {
"build": "react-scripts build",
"compose": "docker-compose up --build -d",
"eject": "react-scripts eject",
"start": "BROWSER=none react-scripts start",
"test": "react-scripts test --coverage --verbose --watchAll=false",
"test:debug": "react-scripts test --inspect-brk test --runInBand --no-cache"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": ["react-app", "react-app/jest"]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/index.tsx",
"!src/react-app-env.d.ts",
"!src/reportWebVitals.ts",
"!src/service-worker.ts",
"!src/serviceWorkerRegistration.ts",
"!src/**/index.ts",
"!src/types/*"
]
}
}