-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.52 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.52 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
{
"name": "rubrion-frontend-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "vite build",
"build:mocked": "vite build --mode mocked",
"dev": "vite --mode debug",
"dev:prod": "vite",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"clean:logs:check": "node scripts/clean-console-logs.js --check",
"clean:logs:fix": "node scripts/clean-console-logs.js --fix"
},
"dependencies": {
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@tanstack/react-query": "^5.74.3",
"axios": "^1.8.4",
"dotenv": "^16.5.0",
"firebase": "^11.6.0",
"framer-motion": "^12.7.2",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.0.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-fast-marquee": "^1.6.5",
"react-helmet": "^6.1.0",
"react-i18next": "^15.4.1",
"react-router-dom": "^7.5.0",
"react-slick": "^0.30.3",
"slick-carousel": "^1.8.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/dotenv": "^6.1.1",
"@types/node": "^22.14.1",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@types/react-helmet": "^6.1.11",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-istanbul": "^3.1.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vitest-globals": "^1.5.0",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"msw": "^2.7.4",
"prettier": "^3.5.3",
"type-check": "^0.4.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.29.1",
"vite": "^6.2.6",
"vitest": "^3.1.1"
},
"msw": {
"workerDirectory": [
"public"
]
}
}