-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.61 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
{
"name": "zpristupnovaci-modul",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"format": "prettier . --write",
"test": "vitest",
"prepare": "husky install .husky",
"postinstall": "husky install .husky"
},
"lint-staged": {
"*.{ts,tsx}": "yarn run lint-fix",
"*.{ts,tsx,css,md,html,json}": "yarn run format"
},
"browserslist": {
"production": [
"defaults"
],
"development": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.0.2",
"@mui/lab": "6.0.0-beta.9",
"@mui/material": "^6.0.2",
"@mui/x-data-grid": "^7.16.0",
"@mui/x-date-pickers": "^7.16.0",
"@sentry/react": "^8.28.0",
"@tanstack/react-query": "^5.55.2",
"@tanstack/react-query-devtools": "^5.55.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"i18next": "^23.14.0",
"i18next-browser-languagedetector": "^8.0.0",
"immer": "^10.1.1",
"ky": "1.7.2",
"lodash-es": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-i18next": "^15.0.1",
"react-router-dom": "^6.26.1",
"react-toastify": "^10.0.5",
"tslib": "^2.7.0",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@sentry/vite-plugin": "^2.22.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.5",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^2.0.5"
},
"packageManager": "yarn@4.0.2"
}