-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.6 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
{
"name": "hemis-ministry-frontend",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "O'zbekiston Respublikasi Oliy Ta'lim Vazirligi - HEMIS 2.0 Modern Frontend",
"author": "HEMIS Development Team",
"engines": {
"node": ">=20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:prod": "yarn sync:translations && tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check:i18n": "node scripts/check-i18n-keys.cjs",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:headed": "playwright test --headed",
"e2e:chromium": "playwright test --project=chromium",
"sync:translations": "node scripts/sync-translations.cjs",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "5.2.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/react": "10.38.0",
"@tanstack/react-query": "5.101.4",
"@tanstack/react-table": "8.21.3",
"axios": "^1.15.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"dompurify": "^3.4.0",
"i18next": "^25.7.4",
"lucide-react": "0.469.0",
"react": "19.2.3",
"react-countup": "6.5.3",
"react-dom": "19.2.3",
"react-hook-form": "7.71.1",
"react-i18next": "^16.5.3",
"react-router-dom": "^7.13.0",
"recharts": "^3.9.1",
"sonner": "2.0.7",
"tailwind-merge": "3.4.0",
"web-vitals": "^5.2.0",
"zod": "4.3.6",
"zustand": "5.0.10"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "9.39.2",
"@playwright/test": "^1.58.1",
"@sentry/vite-plugin": "^5.2.1",
"@tailwindcss/postcss": "4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/jsdom": "^27.0.0",
"@types/node": "24.10.8",
"@types/react": "19.2.8",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"autoprefixer": "10.4.23",
"browserslist": "^4.28.1",
"eslint": "9.39.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.26",
"globals": "16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"msw": "^2.12.7",
"postcss": "8.5.6",
"prettier": "3.8.0",
"prettier-plugin-tailwindcss": "0.6.14",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"typescript-eslint": "8.53.0",
"vite": "7.3.1",
"vitest": "^4.0.17"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}