- Remove hard-coded limit=1000 default from listing_geojson and streaming endpoints, allowing all matching results to be returned - Add Redis caching service (db=2, 30min TTL) that caches query results as Redis Lists for fast re-queries with reduced DB load - Integrate cache into streaming endpoint: serve from cache on hit, populate cache on miss during DB streaming - Invalidate cache after scrape completes (both success and no-new-listings) - Replace ScrollArea with react-virtuoso in ListView for virtual scrolling, keeping only ~20-30 DOM nodes regardless of list size - Handle metadata streaming message to show "0 / N" progress from start - Throttle frontend state updates with requestAnimationFrame to prevent UI jank from rapid re-renders during cached response streaming
68 lines
2 KiB
JSON
68 lines
2 KiB
JSON
{
|
|
"name": "wrongmove",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^5.1.1",
|
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
"@radix-ui/react-hover-card": "^1.1.14",
|
|
"@radix-ui/react-label": "^2.1.7",
|
|
"@radix-ui/react-popover": "^1.1.14",
|
|
"@radix-ui/react-progress": "^1.1.7",
|
|
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
"@radix-ui/react-select": "^2.2.5",
|
|
"@radix-ui/react-separator": "^1.1.7",
|
|
"@radix-ui/react-slider": "^1.3.6",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"@radix-ui/react-tooltip": "^1.2.7",
|
|
"@tabler/icons-react": "^3.34.0",
|
|
"@tailwindcss/vite": "^4.1.10",
|
|
"@types/crossfilter": "^0.0.38",
|
|
"@types/d3": "^7.4.3",
|
|
"@types/mapbox-gl": "^3.4.1",
|
|
"@types/turf": "^3.5.32",
|
|
"chrono-node": "^2.8.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"crossfilter2": "^1.5.4",
|
|
"d3": "^7.9.0",
|
|
"date-fns": "^4.1.0",
|
|
"lucide-react": "^0.515.0",
|
|
"mapbox-gl": "^3.12.0",
|
|
"oidc-client-ts": "^3.2.1",
|
|
"react": "^19.1.0",
|
|
"react-day-picker": "^9.7.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-hook-form": "^7.58.1",
|
|
"react-oidc-context": "^3.3.0",
|
|
"react-virtuoso": "^4.18.1",
|
|
"tailwind-merge": "^3.3.1",
|
|
"tailwindcss": "^4.1.10",
|
|
"zod": "^3.25.67"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.25.0",
|
|
"@types/node": "^24.0.1",
|
|
"@types/react": "^19.1.2",
|
|
"@types/react-dom": "^19.1.2",
|
|
"@vitejs/plugin-react-swc": "^3.9.0",
|
|
"eslint": "^9.25.0",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"eslint-plugin-react-refresh": "^0.4.19",
|
|
"globals": "^16.0.0",
|
|
"tw-animate-css": "^1.3.4",
|
|
"typescript": "~5.8.3",
|
|
"typescript-eslint": "^8.30.1",
|
|
"vite": "^6.3.5"
|
|
}
|
|
}
|