-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.89 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
{
"name": "web-map",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:analyze": "cross-env BUILD_ANALYZE=1 npm run build",
"size": "npm run build && size-limit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:real-api": "cross-env VITE_API_MODE=real VITE_API_BASE_URL=https://api.parktrack.live playwright test --config=playwright.real-api.config.ts",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml}": [
"prettier --write"
]
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@tailwindcss/vite": "^4.1.14",
"@tanstack/react-query": "^5.100.1",
"@tanstack/react-virtual": "^3.13.24",
"@yandex/ymaps3-default-ui-theme": "^0.0.24",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^1.11.0",
"msw": "^2.13.6",
"nuqs": "^2.8.9",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-error-boundary": "^6.1.1",
"react-hook-form": "^7.73.1",
"react-router": "^7.14.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"use-debounce": "^10.1.1",
"vaul": "^1.1.2",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.59.1",
"@size-limit/preset-app": "^11.2.0",
"@tailwindcss/postcss": "^4.1.14",
"@tanstack/react-query-devtools": "^5.100.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/ui": "^4.1.5",
"@yandex/ymaps3-types": "^1.0.19345674",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.6",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"rollup-plugin-visualizer": "^6.0.11",
"size-limit": "^11.2.0",
"tailwindcss": "^4.1.14",
"ts-morph": "^28.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7",
"vitest": "^4.1.5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}