-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
275 lines (275 loc) · 22.3 KB
/
Copy pathpackage.json
File metadata and controls
275 lines (275 loc) · 22.3 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
{
"name": "manacost-arena",
"private": true,
"license": "UNLICENSED",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"vite --port=3000 --host=0.0.0.0\" \"tsx --watch server/index.ts\"",
"dev:frontend": "vite --port=3000 --host=0.0.0.0",
"dev:server": "tsx --watch server/index.ts",
"storybook": "STORYBOOK_DISABLE_TELEMETRY=1 storybook dev -p 6006 --no-open",
"build-storybook": "STORYBOOK_DISABLE_TELEMETRY=1 storybook build",
"build": "vite build && npm run build:server && node scripts/prerender.js",
"build:server": "rm -rf build && tsc -p tsconfig.server.json && chmod -R a+rX build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"lint:docs": "markdownlint-cli2 README.md CONTRIBUTING.md SECURITY.md STABILIZATION.md DEPLOYMENT.md assets.md \"docs/**/*.md\" && design.md lint design.md",
"lint:architecture": "node scripts/check-component-duplicates.mjs && node scripts/check-css-architecture.mjs && node scripts/check-entry-dead-code.mjs && node scripts/check-module-size-budgets.mjs && node scripts/check-function-size-budgets.mjs && node scripts/check-module-boundaries.mjs && node scripts/check-source-debt.mjs && npm run architecture:catalog && npm run architecture:http-manifest",
"architecture:baseline": "npm run build && node scripts/architecture-baseline.mjs",
"architecture:catalog": "node scripts/architecture-catalog.mjs check",
"architecture:map": "node scripts/architecture-catalog.mjs map",
"architecture:owner": "node scripts/architecture-catalog.mjs route",
"architecture:impact": "node scripts/architecture-catalog.mjs file",
"architecture:module": "node scripts/architecture-catalog.mjs module",
"architecture:dependencies": "node scripts/architecture-catalog.mjs dependencies",
"architecture:tests": "node scripts/architecture-catalog.mjs tests",
"test:module": "node scripts/architecture-catalog.mjs test",
"quality:clean-code": "node scripts/clean-code/cli.mjs check",
"quality:clean-code:changed": "node scripts/clean-code/cli.mjs changed",
"quality:clean-code:report": "node scripts/clean-code/cli.mjs report",
"quality:clean-code:baseline": "node scripts/clean-code/cli.mjs baseline",
"architecture:http-manifest": "node scripts/http-route-manifest.mjs --check",
"architecture:http-manifest:update": "node scripts/http-route-manifest.mjs --write",
"lint:react-changed": "node scripts/react-doctor-changed.mjs",
"security:semgrep": "node scripts/semgrep-changed.mjs",
"security:semgrep:strict": "SEMGREP_BLOCK_FINDINGS=1 node scripts/semgrep-changed.mjs",
"security:gitleaks": "node scripts/gitleaks.mjs",
"quality:knip": "knip --dependencies --no-progress --treat-config-hints-as-errors",
"quality:knip:full": "knip --no-progress --reporter compact --no-exit-code",
"agent:devtools": "node scripts/chrome-devtools-mcp.mjs",
"agent:session:preflight": "node scripts/agent-session-preflight.mjs",
"agent:integration:preflight": "node scripts/agent-session-preflight.mjs --integration",
"agent:audit:data": "tsx scripts/heartpulse-data-audit.ts",
"budget": "node scripts/check-budgets.js",
"optimize:ui-assets": "node scripts/optimize-ui-assets.mjs",
"sync:constructed-filter-assets": "node scripts/sync-constructed-filter-assets.mjs",
"sync:constructed-card-images": "node build/server/constructedCardImagePrewarmer.js",
"test:tierlist": "tsx tests/hsreplay-tierlist.test.ts",
"test:blizzard": "tsx tests/blizzard-card-images.test.ts",
"test:guides": "tsx tests/guides-sanitize.test.ts",
"test:health": "tsx tests/health.test.ts",
"test:observability": "tsx tests/observability.test.ts",
"test:auth-security": "tsx tests/auth-security.test.ts",
"test:application-auth": "tsx tests/application-auth-model.test.ts && tsx tests/application-auth-repository.test.ts && tsx tests/application-auth-profile.test.ts && tsx tests/application-auth-routes.test.ts",
"test:tracker-ingestion": "tsx tests/tracker-ingestion-routes.test.ts",
"test:browser-identity": "tsx --test tests/browser-identity-*.test.ts",
"test:application-connect": "tsx tests/application-connect-api.test.ts && tsx tests/application-connect-page.test.ts",
"test:csrf": "tsx tests/csrf.test.ts",
"test:metrics": "tsx tests/metrics.test.ts",
"test:network-boundary": "tsx tests/network-boundary.test.ts && tsx tests/api-rate-limit-policy.test.ts",
"test:json-body": "tsx tests/json-body.test.ts",
"test:local-smtp": "tsx tests/local-smtp.test.ts",
"test:production-monitor": "node tests/production-monitor.test.mjs",
"test:production-observer": "node --test tests/production-observer.test.mjs tests/production-observer-browser.test.mjs",
"test:workflow-contract": "node tests/workflow-contract.test.mjs",
"test:claude-post-push-hook": "node --test tests/claude-post-push-review-hook.test.mjs",
"test:react-doctor-contract": "node --test tests/react-doctor-changed.test.mjs",
"test:clean-code-gate": "node --test tests/clean-code-gate.test.mjs",
"test:agent-tooling": "node --test tests/agent-tooling-contract.test.mjs tests/agent-session-preflight.test.mjs",
"test:discovery": "node --test tests/test-discovery.test.mjs && node scripts/test-suite-runner.mjs --validate",
"test:suite": "node scripts/test-suite-runner.mjs --suite",
"test:storybook": "node --test tests/storybook-mcp-contract.test.mjs",
"test:security-tooling": "node --test tests/security-tooling-contract.test.mjs",
"test:production-scraper-runtime": "node tests/production-scraper-runtime.test.mjs",
"test:property": "tsx tests/parser-normalization-property.test.ts",
"test:sentry": "tsx tests/sentry-privacy.test.ts && tsx tests/web-vitals-sentry.test.ts && tsx tests/web-vitals-routes.test.ts",
"test:mobile-layout-diagnostics": "node tests/mobile-layout-diagnostics.test.mjs",
"test:modal-surface": "tsx tests/modal-surface-model.test.ts && node tests/modal-surface-browser.test.mjs",
"test:app-error-boundary": "tsx tests/app-error-boundary.test.tsx && tsx tests/client-error-routes.test.ts",
"test:recoverable-surface": "tsx tests/recoverable-surface.test.tsx && tsx tests/traditional-mode-banner-ui.test.ts",
"test:not-found-route": "tsx tests/client-route-resolution.test.ts && tsx tests/not-found-page.test.tsx",
"test:qa-contract": "node tests/qa-command-contract.test.mjs",
"test:referrals": "tsx tests/referrals.test.ts",
"test:referral-routes": "tsx tests/referral-routes.test.ts",
"test:gallery-routes": "tsx tests/gallery-routes.test.ts",
"test:favicon": "node tests/favicon-assets.test.mjs",
"test:cosmetics": "tsx tests/cosmetics-model.test.ts && tsx tests/cosmetics-routes.test.ts && tsx tests/cosmetics-seo-routes.test.ts && tsx tests/cosmetics-ui-contract.test.ts",
"test:public-resources": "tsx tests/public-resource-routes.test.ts && tsx tests/public-resource-url.test.ts && tsx tests/article-image-src.test.ts && node tests/public-resource-browser-contract.test.mjs",
"test:cdn-delivery": "tsx tests/public-asset-delivery.test.ts",
"test:card-image-delivery-config": "tsx tests/card-image-delivery-config.test.ts",
"test:runtime-client-config": "node tests/runtime-client-config.test.mjs",
"test:battleground-proxy-routes": "tsx tests/battleground-proxy-routes.test.ts && tsx tests/battleground-image-optimization.test.ts",
"test:battleground-image-optimization": "tsx tests/battleground-image-optimization.test.ts",
"test:battleground-seo-routes": "tsx tests/battleground-seo-routes.test.ts",
"test:battleground-library-seo-routes": "tsx tests/battleground-library-seo-routes.test.ts && tsx tests/bg-library-catalog-model.test.ts",
"test:bg-library-catalog-model": "tsx tests/bg-library-catalog-model.test.ts",
"test:battleground-card-variants": "tsx tests/battleground-card-variants.test.ts && npm run test:battleground-accessories",
"test:battleground-accessories": "node --test tests/battleground-accessories-browser.test.mjs",
"test:article-cover-routes": "tsx tests/article-cover-routes.test.ts",
"test:guides-archive-routes": "tsx tests/guides-archive-routes.test.ts",
"test:article-routes": "tsx tests/article-routes.test.ts",
"test:article-access": "tsx tests/article-access.test.ts",
"test:global-search-routes": "tsx tests/global-search-routes.test.ts",
"test:operational-routes": "tsx tests/operational-routes.test.ts",
"test:arena-deck-routes": "tsx tests/arena-deck-routes.test.ts",
"test:standard-matchup-routes": "tsx tests/standard-matchup-routes.test.ts && tsx tests/standard-matchups-controls-ui.test.ts",
"test:constructed-card-routes": "tsx tests/constructed-card-catalog-store.test.ts && tsx tests/constructed-card-catalog-model.test.ts && tsx tests/constructed-card-history-store.test.ts && tsx tests/constructed-card-history-model.test.ts && tsx tests/constructed-card-periods.test.ts && tsx tests/constructed-card-routes.test.ts && tsx tests/constructed-card-resilience.test.ts && tsx tests/constructed-card-ui-status.test.ts && tsx tests/constructed-card-catalog-controls.test.tsx && tsx tests/constructed-card-format-availability.test.ts && tsx tests/constructed-card-history-disclosure.test.tsx && tsx tests/constructed-card-list-prefetch.test.ts && tsx tests/card-opening-performance.test.ts",
"test:constructed-card-filters": "tsx tests/constructed-card-filter-options.test.ts",
"test:constructed-card-seo-routes": "tsx tests/constructed-card-seo-routes.test.ts",
"test:entity-sitemaps": "tsx tests/entity-sitemap-catalog.test.ts && tsx tests/entity-sitemap-sources.test.ts && tsx tests/entity-sitemap-store.test.ts && tsx tests/entity-sitemap-routes.test.ts",
"test:constructed-card-translations": "tsx tests/constructed-card-translations.test.ts",
"test:constructed-card-media": "tsx tests/constructed-card-media.test.ts && tsx tests/card-catalog-image-loading.test.ts",
"test:constructed-card-image-prewarm": "tsx tests/constructed-card-image-overrides.test.ts && tsx tests/constructed-card-image-prewarmer.test.ts",
"test:standard-meta-routes": "tsx tests/standard-meta-routes.test.ts && tsx tests/standard-meta-contract.test.ts && tsx tests/hsguru-deck-info.test.ts && tsx tests/standard-meta-recommendation-cache.test.ts",
"test:constructed-archetype-routes": "tsx tests/constructed-archetype-routes.test.ts && node tests/constructed-archetypes-browser.test.mjs",
"test:archetypes-detail": "tsx tests/constructed-deck-code.test.ts && tsx tests/archetype-detail-model.test.ts && tsx tests/archetype-deck-identity.test.ts && tsx tests/admin-archetypes-routes.test.ts && node tests/archetypes-detail-browser.test.mjs",
"test:standard-meta-contract": "tsx tests/standard-meta-contract.test.ts",
"test:hsguru-deck-info": "tsx tests/hsguru-deck-info.test.ts",
"test:deckview-preview": "tsx tests/deckview-preview.test.ts",
"test:deck-render-routes": "tsx tests/deck-render-routes.test.ts",
"test:deck-render-client": "tsx tests/deck-render-client.test.ts && tsx tests/deck-render-image-failure.test.ts && tsx tests/standard-meta-preview-cache-policy.test.ts",
"test:deck-builder": "tsx tests/deck-builder-resolve.test.ts",
"test:hsreplay-deck-mobile": "node tests/hsreplay-deck-mobile-browser.test.mjs",
"test:deck-card-data": "tsx tests/deck-card-data.test.ts",
"test:vicious-gold-builds": "tsx tests/vicious-gold-builds.test.ts && tsx tests/vicious-gold-progressive-loading.test.ts && node tests/vicious-gold-progressive-browser.test.mjs",
"test:standard-meta-classes": "tsx tests/standard-meta-classes.test.ts",
"test:standard-meta-profile-access": "tsx tests/standard-meta-profile-access.test.ts",
"test:class-matchup-routes": "tsx tests/class-matchup-routes.test.ts",
"test:legendary-routes": "tsx tests/legendary-routes.test.ts",
"test:tierlist-routes": "tsx tests/tierlist-routes.test.ts",
"test:tierlist-early-stats": "tsx tests/tierlist-early-stats.test.ts",
"test:tierlist-cache-bust": "tsx tests/tierlist-cache-bust-routes.test.ts",
"test:winrate-routes": "tsx tests/winrate-routes.test.ts",
"test:home-summary-routes": "tsx tests/home-summary-routes.test.ts",
"test:card-image-routes": "tsx tests/card-image-remote.test.ts && tsx tests/card-image-routes.test.ts",
"test:admin-class-position-routes": "tsx tests/admin-class-position-routes.test.ts",
"test:admin-archetype-translation-routes": "tsx tests/admin-archetype-translation-routes.test.ts && tsx tests/contest-admin-translations-request.test.ts",
"test:admin-mechanic-translation-routes": "tsx tests/admin-mechanic-translation-routes.test.ts",
"test:admin-standard-operations-routes": "tsx tests/admin-standard-operations-routes.test.ts && tsx tests/admin-fun-decks-routes.test.ts && tsx tests/fun-deck-preview-prewarmer.test.ts",
"test:arena-synergies": "tsx tests/arena-synergy-analysis.test.ts && tsx tests/arena-draft-advisor.test.ts && tsx tests/arena-draft-assistant-ui.test.ts && tsx tests/arena-synergy-history-store.test.ts && tsx tests/arena-draft-refresh-pipeline.test.ts && tsx tests/arena-synergy-refresh-manager.test.ts && tsx tests/admin-arena-synergy-service.test.ts && tsx tests/admin-arena-synergy-routes.test.ts && tsx tests/admin-arena-draft-refresh-routes.test.ts && tsx tests/admin-arena-draft-advice-routes.test.ts",
"test:admin-parser-control-routes": "tsx tests/admin-parser-control-routes.test.ts && tsx tests/hs-data-parser-control-client.test.ts && tsx tests/parser-control-normalization.test.ts && tsx tests/parser-control-ui-contract.test.tsx && tsx tests/parser-data-cache-invalidation.test.ts && tsx tests/parser-run-reconciler.test.ts",
"test:admin-article-routes": "tsx tests/admin-article-routes.test.ts",
"test:admin-contest-mutation-routes": "tsx tests/admin-contest-mutation-routes.test.ts",
"test:admin-contest-read-routes": "tsx tests/admin-contest-read-routes.test.ts",
"test:admin-user-mutation-routes": "tsx tests/admin-user-mutation-routes.test.ts",
"test:sqlite-connection": "tsx tests/sqlite-connection.test.ts && tsx tests/archetype-deck-codes-schema.test.ts",
"test:admin-user-read-routes": "tsx tests/admin-user-read-routes.test.ts",
"test:admin-boosty-routes": "tsx tests/admin-boosty-routes.test.ts && npm run test:admin-boosty-analytics-routes && npm run test:boosty-analytics-model",
"test:admin-boosty-analytics-routes": "tsx tests/admin-boosty-analytics-routes.test.ts",
"test:boosty-analytics-model": "tsx tests/boosty-analytics-model.test.ts",
"test:admin-telegram-read-routes": "tsx tests/admin-telegram-read-routes.test.ts",
"test:admin-image-upload-routes": "tsx tests/admin-image-upload-routes.test.ts",
"test:admin-remote-image": "tsx tests/admin-remote-image.test.ts",
"test:admin-image-generation-routes": "tsx tests/admin-image-generation-routes.test.ts",
"test:admin-mailing-preview-routes": "tsx tests/admin-mailing-preview-routes.test.ts",
"test:admin-mailing-delivery-routes": "tsx tests/admin-mailing-delivery-routes.test.ts",
"test:admin-mailing-read-routes": "tsx tests/admin-mailing-read-routes.test.ts",
"test:newsletter-unsubscribe-routes": "tsx tests/newsletter-unsubscribe-routes.test.ts",
"test:contest-selection": "tsx tests/contest-selection.test.ts",
"test:contest-routes": "tsx tests/contest-routes.test.ts",
"test:subscription-routes": "tsx tests/subscription-routes.test.ts",
"test:subscription-refresh-job": "tsx tests/subscription-refresh-job.test.ts",
"test:ecosystem-internal-routes": "tsx tests/ecosystem-internal-routes.test.ts",
"test:auth-profile-routes": "tsx tests/auth-profile-routes.test.ts",
"test:public-profiles": "tsx tests/public-profile-identity.test.ts && tsx tests/public-profile-routes.test.ts && tsx tests/public-profile-client-routes.test.ts",
"test:public-api": "tsx tests/public-api-v1.test.ts && tsx tests/public-api-cards.test.ts && tsx tests/public-api-card-statistics.test.ts && tsx tests/public-api-meta-statistics.test.ts && tsx tests/public-api-deck-statistics.test.ts && tsx tests/arena-class-statistics-normalizer.test.ts && tsx tests/public-api-arena-statistics.test.ts && tsx tests/public-api-battleground-statistics.test.ts && tsx tests/public-api-complete-game-mode-statistics.test.ts && npm run test:public-api-ui",
"test:heartpulse-strategy-audit": "tsx tests/battleground-strategy-audit.test.ts && tsx tests/hsreplay-strategy-source.test.ts",
"test:public-api-ui": "tsx tests/public-api-ui.test.ts",
"test:password-reset-routes": "tsx tests/password-reset-routes.test.ts",
"test:auth-verification-routes": "tsx tests/auth-verification-routes.test.ts",
"test:auth-credential-routes": "tsx tests/auth-credential-routes.test.ts",
"test:auth-sessions": "tsx tests/auth-sessions.test.ts",
"test:admin-workspace-state": "tsx tests/admin-workspace-state.test.ts && tsx tests/admin-workspace-shell.test.tsx",
"test:backup": "bash tests/backup-restore.test.sh && bash tests/backup-replication.test.sh",
"test:release": "node tests/create-release.test.mjs",
"test:snapshots": "tsx tests/snapshots.test.ts",
"test:scrape-queue": "tsx tests/scrape-queue.test.ts",
"test:deployment": "node tests/deploy-release.test.mjs && node tests/edge-static-sync.test.mjs && node tests/card-image-edge-publication.test.mjs && node tests/edge-cdn-operations-contract.test.mjs",
"test:ci-deploy-gate": "node --test tests/ci-deploy-gate.test.mjs",
"test:controlled-input": "node --test tests/controlled-input-browser.test.mjs",
"test:deployer-install-contract": "node --test tests/deployer-install-contract.test.mjs",
"test:seo-registry": "tsx tests/seo-registry.test.ts",
"test:routes": "tsx tests/routes.test.ts && node tests/deferred-route-boundaries.test.mjs",
"test:route-inventory": "tsx tests/route-inventory.test.ts",
"test:responsive-inventory": "tsx tests/responsive-route-inventory.test.ts",
"test:runtime-inventory": "node --test tests/runtime-service-inventory.test.mjs",
"test:http-route-manifest": "node --test tests/http-route-manifest.test.mjs",
"test:documentation-truth": "node --test tests/documentation-truth.test.mjs",
"test:architecture-catalog": "node --test tests/architecture-catalog.test.mjs",
"test:process-lifecycle": "tsx tests/process-lifecycle.test.ts",
"test:nginx-routing": "node tests/nginx-html-routing.test.mjs",
"test:nginx-canonical-hosts": "node tests/nginx-canonical-hosts.test.mjs",
"test:nginx-contract-drift": "node tests/nginx-contract-drift.test.mjs",
"test:hearthpulse-shadow": "node tests/hearthpulse-shadow-nginx.test.mjs && node tests/hearthpulse-cutover-contract.test.mjs && node tests/hearthpulse-cert-deploy.test.mjs && npm run test:koloda-domain-links",
"test:hearthpulse-monitor": "node tests/hearthpulse-shadow-monitor.test.mjs",
"test:koloda-domain-links": "node tests/koloda-domain-links.test.mjs",
"test:robots-policy": "node tests/robots-policy.test.mjs",
"test:public-url-policy": "tsx tests/public-url-policy.test.ts",
"test:prerender-seo": "node tests/prerender-seo.test.mjs",
"test:page-tour": "tsx tests/page-tour.test.ts && tsx tests/page-tour-registry.test.ts && tsx tests/page-tour-engine-contracts.test.ts",
"test:page-tour-registry": "tsx tests/page-tour-registry.test.ts",
"test:page-tour-engine": "tsx tests/page-tour-engine-contracts.test.ts",
"test:server-build": "node scripts/server-build-smoke.mjs",
"test:recovery-runtime": "node scripts/recovery-runtime-smoke.mjs",
"test": "node scripts/test-suite-runner.mjs --all",
"verify:release": "npm run lint && npm run lint:architecture && npm run quality:clean-code:changed && npm run test:discovery && npm run build-storybook && npm run quality:knip && npm run lint:react-changed && npm test && npm run build && npm run test:server-build && npm run test:recovery-runtime && npm run budget && npm run lint:docs",
"verify:ci": "npm run lint && npm run lint:architecture && npm run quality:clean-code:changed && npm run test:discovery && npm run build-storybook && npm run quality:knip && npm run lint:react-changed && npm test && npm run build && npm run test:server-build && npm run test:recovery-runtime && npm run budget && node scripts/browser-qa-ci.mjs && npm run lint:docs",
"scrape": "tsx server/scraper.ts",
"qa:screens": "node scripts/screenshot-qa.mjs",
"docs:screenshots": "node scripts/capture-github-screenshots.mjs",
"qa:e2e": "node scripts/e2e-qa.mjs",
"qa:responsive": "QA_RESPONSIVE_SCOPE=representative node scripts/responsive-qa-local.mjs",
"qa:responsive:all": "QA_RESPONSIVE_SCOPE=all-p0 node scripts/responsive-qa-local.mjs",
"qa:ci": "npm run build && node scripts/browser-qa-ci.mjs",
"observe:production": "node scripts/production-observer.mjs",
"release:create": "node scripts/create-release.mjs",
"changelog:post": "node scripts/post-arena-changelog.mjs"
},
"dependencies": {
"@firestone-hs/deckstrings": "^2.2.8",
"@sentry/node": "10.73.0",
"@sentry/react": "10.73.0",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"compression": "^1.8.1",
"concurrently": "^9.2.3",
"dotenv": "^17.3.1",
"express": "^4.21.2",
"express-rate-limit": "^8.3.1",
"lucide-react": "^0.546.0",
"node-cron": "^4.5.0",
"oidc-provider": "9.12.2",
"puppeteer-core": "25.10.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redis": "^4.7.1",
"sanitize-html": "2.17.7",
"sharp": "0.35.4",
"web-vitals": "^6.0.0"
},
"devDependencies": {
"@google/design.md": "0.4.0",
"@storybook/addon-a11y": "10.6.0",
"@storybook/addon-docs": "10.6.0",
"@storybook/addon-mcp": "0.7.0",
"@storybook/react-vite": "10.6.0",
"@types/compression": "^1.8.1",
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"@types/oidc-provider": "9.12.1",
"@types/sanitize-html": "2.16.1",
"axe-core": "^4.12.1",
"chrome-devtools-mcp": "1.9.0",
"fast-check": "4.10.0",
"knip": "6.35.1",
"markdownlint-cli2": "0.23.2",
"puppeteer": "25.10.0",
"react-doctor": "0.9.13",
"storybook": "10.6.0",
"tailwindcss": "^4.1.14",
"tsx": "^4.22.4",
"typescript": "~5.8.2",
"vite": "^6.4.3"
},
"overrides": {
"nanoid": "3.3.18",
"js-yaml": "5.2.2",
"postcss": "8.5.23",
"qs": "6.16.0",
"smol-toml": "1.8.0",
"valibot": "1.4.2"
},
"description": "Russian Hearthstone Arena and Battlegrounds analytics platform"
}