-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.94 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
{
"name": "english-trainer",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">= 22"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "TZ=UTC vitest",
"bench": "TZ=UTC vitest bench",
"test-info": "DEBUG=vite-node:* npm run test -- --logHeapUsage",
"//! For debugging open URL - `chrome://inspect` ": "",
"test-debug": "npm run test -- --inspect-brk --no-file-parallelism",
"test-update": "npm run test -- -u",
"coverage": "vitest run --coverage --coverage.reporter='text-summary'",
"coverage-dev": "vitest run --coverage --coverage.reporter='html'",
"check-ts": "tsc --noEmit",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"format": "prettier --check src",
"format-fix": "prettier --write src",
"knip": "knip --production",
"check-all": "npm run check-ts && npm run lint && npm run format && npm run knip",
"fix-all": "npm run lint-fix && npm run format-fix",
"prepare": "git config core.hooksPath .git-hooks",
"pre-commit": "npm run check-all && npm test"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.0",
"@hookform/resolvers": "^3.9.1",
"@mui/icons-material": "^6.2.0",
"@mui/lab": "^6.0.0-beta.11",
"@mui/material": "^6.2.0",
"@mui/x-data-grid": "^7.23.2",
"@tanstack/react-query": "^5.62.7",
"@tanstack/react-query-devtools": "^5.62.7",
"@toolpad/core": "^0.11.0",
"classnames": "^2.5.1",
"core-js": "^3.39.0",
"file-saver": "^2.0.5",
"i18next": "^24.1.0",
"idb": "^8.0.0",
"luxon": "^3.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.1",
"react-hotkeys-hook": "^4.6.1",
"react-router-dom": "^6.28.0",
"zod": "^3.24.1",
"zod-i18n-map": "^2.27.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/file-saver": "^2.0.7",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@vite-pwa/assets-generator": "^0.2.6",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"babel-plugin-react-compiler": "^19.0.0-beta-37ed2a7-20241206",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "^19.0.0-beta-37ed2a7-20241206",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.13.0",
"happy-dom": "^15.11.7",
"knip": "^5.40.0",
"msw": "^2.6.8",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^2.0.4"
}
}