forked from wger-project/react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.61 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.61 KB
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
128
{
"name": "@wger-project/react-components",
"files": [
"README.md",
"LICENSE",
"index.html",
"src/",
"build/"
],
"main": "build/main.js",
"exports": {
".": "./build/index.js"
},
"version": "25.12.5",
"repository": "https://github.com/wger-project/react",
"type": "module",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@emotion/babel-plugin": "^11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hello-pangea/dnd": "^18.0.1",
"@mui/icons-material": "^7.3.5",
"@mui/lab": "^7.0.1-beta.18",
"@mui/material": "^7.3.4",
"@mui/system": "^7.3.3",
"@mui/x-data-grid": "^8.18.0",
"@mui/x-date-pickers": "^8.18.0",
"@tanstack/react-query": "^5.90.2",
"@vitejs/plugin-react": "^5.1.1",
"axios": "^1.12.2",
"formik": "^2.4.6",
"history": "^5.3.0",
"i18next": "^25.6.0",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"luxon": "^3.7.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-grid-layout": "^1.5.2",
"react-i18next": "^16.3.3",
"react-is": "^19.2.0",
"react-responsive": "^10.0.1",
"react-router-dom": "^7.9.4",
"react-simple-wysiwyg": "^3.4.1",
"recharts": "^3.4.1",
"slug": "^9.1.0",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"web-vitals": "^5.1.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tanstack/react-query-devtools": "^5.90.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/luxon": "^3.7.1",
"@types/node": "^22.18.9",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/react-grid-layout": "^1.3.5",
"@types/react-is": "^19.2.0",
"@types/slug": "^5.0.9",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"eslint": "^9.37.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"i18next-parser": "^9.3.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^27.2.0",
"ts-jest": "^29.4.5",
"typescript-eslint": "^8.46.0",
"vite": "^7.2.2",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^3.2.4",
"webpack-bundle-analyzer": "^4.10.2"
},
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "LANG=de_de jest",
"test:coverage": "LANG=de_de jest --coverage --collectCoverageFrom='!src/pages/**/*.tsx'",
"i18n": "i18next",
"lint": "eslint src",
"lint:quiet": "eslint --quiet src",
"lint:fix": "eslint --fix src"
},
"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"
]
},
"packageManager": "npm@10.5.0"
}