-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
127 lines (127 loc) · 3.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
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
119
120
121
122
123
124
125
126
127
{
"name": "wger_react",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@emotion/babel-plugin": "^11.12.0",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.3.0",
"@mui/lab": "^6.0.0-beta.14",
"@mui/material": "^6.3.0",
"@mui/styles": "^6.3.0",
"@mui/x-data-grid": "^7.23.5",
"@mui/x-date-pickers": "^7.23.3",
"@tanstack/react-query": "^5.51.11",
"@vitejs/plugin-react": "^4.3.4",
"axios": "^1.7.9",
"formik": "^2.4.6",
"history": "^5.3.0",
"i18next": "^23.16.4",
"i18next-browser-languagedetector": "^8.0.2",
"i18next-http-backend": "^3.0.1",
"luxon": "^3.5.0",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-i18next": "^15.1.3",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.27.0",
"react-simple-wysiwyg": "^3.2.0",
"recharts": "^2.13.3",
"slug": "^9.1.0",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.0.1",
"web-vitals": "^4.2.2",
"yup": "^1.4.0"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.51.11",
"@testing-library/dom": "^10.3.2",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.4",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@types/recharts": "^1.8.29",
"@types/slug": "^5.0.9",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"i18next-parser": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"ts-jest": "^29.2.3",
"vite": "^5.3.6",
"vitest": "^2.0.3"
},
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"postbuild": "./postbuild.sh",
"test": "LANG=de_de jest",
"i18n": "i18next",
"lint": "eslint ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"ignorePatterns": [
"build/**"
],
"rules": {},
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"semi": [
2,
"always"
],
"camelcase": [
1
]
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"^axios$": "<rootDir>/node_modules/axios/dist/node/axios.cjs",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"preset": "ts-jest",
"testEnvironment": "jest-environment-jsdom",
"modulePaths": [
"<rootDir>/src"
],
"setupFilesAfterEnv": [
"./src/setupTests.ts"
]
}
}