2025-06-14 15:36:38 +00:00
|
|
|
{
|
|
|
|
|
"name": "wrongmove",
|
|
|
|
|
"private": true,
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite",
|
|
|
|
|
"build": "tsc -b && vite build",
|
|
|
|
|
"lint": "eslint .",
|
Add comprehensive test suite: 219 new tests across backend and frontend
Backend (103 tests):
- Unit tests for listing_service, export_service, district_service
- Regression tests for API response contracts and query parameter validation
- Integration tests for API workflows, Redis listing cache, listing processor pipeline, and repository advanced queries
- E2E tests for streaming with filters, batching, caching, and task management
Frontend (116 tests):
- Service tests for apiClient, streamingService, taskService, listingService, healthService
- Hook tests for useTaskProgress (WebSocket + polling)
- Component tests for PropertyCard, FilterPanel, Header, ListView, TaskProgressDrawer, TaskIndicator, StreamingProgressBar, HealthIndicator
- E2E tests for filter-stream-display flow
Infrastructure:
- Add pytest-xdist and test markers (regression, integration, e2e)
- Add conftest fixtures: fake_redis, rent_listing_factory, seeded_repository
- Add vitest + testing-library + MSW for frontend testing
2026-02-10 21:59:45 +00:00
|
|
|
"preview": "vite preview",
|
|
|
|
|
"test": "vitest",
|
|
|
|
|
"test:run": "vitest run",
|
|
|
|
|
"test:coverage": "vitest run --coverage"
|
2025-06-14 15:36:38 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-06-17 20:42:41 +00:00
|
|
|
"@hookform/resolvers": "^5.1.1",
|
2026-02-06 20:34:50 +00:00
|
|
|
"@radix-ui/react-accordion": "^1.2.12",
|
2025-06-21 17:26:45 +00:00
|
|
|
"@radix-ui/react-alert-dialog": "^1.1.14",
|
2026-02-06 20:34:50 +00:00
|
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
2025-06-15 13:49:34 +00:00
|
|
|
"@radix-ui/react-dialog": "^1.1.14",
|
2025-06-21 12:49:04 +00:00
|
|
|
"@radix-ui/react-hover-card": "^1.1.14",
|
2025-06-15 13:49:34 +00:00
|
|
|
"@radix-ui/react-label": "^2.1.7",
|
2025-06-21 23:22:11 +00:00
|
|
|
"@radix-ui/react-popover": "^1.1.14",
|
2025-06-21 12:49:04 +00:00
|
|
|
"@radix-ui/react-progress": "^1.1.7",
|
2025-06-15 21:06:10 +00:00
|
|
|
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
|
|
|
"@radix-ui/react-select": "^2.2.5",
|
|
|
|
|
"@radix-ui/react-separator": "^1.1.7",
|
2026-02-06 20:34:50 +00:00
|
|
|
"@radix-ui/react-slider": "^1.3.6",
|
2025-06-15 13:49:34 +00:00
|
|
|
"@radix-ui/react-slot": "^1.2.3",
|
2026-02-07 00:34:47 +00:00
|
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
2025-06-15 21:06:10 +00:00
|
|
|
"@radix-ui/react-tooltip": "^1.2.7",
|
2026-02-21 13:50:38 +00:00
|
|
|
"@react-spring/web": "^10.0.3",
|
2026-02-07 00:34:47 +00:00
|
|
|
"@simplewebauthn/browser": "^10.0.0",
|
2025-06-15 21:06:10 +00:00
|
|
|
"@tabler/icons-react": "^3.34.0",
|
2025-06-14 15:36:38 +00:00
|
|
|
"@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",
|
2026-02-21 13:50:38 +00:00
|
|
|
"@use-gesture/react": "^10.3.1",
|
2025-06-21 23:22:11 +00:00
|
|
|
"chrono-node": "^2.8.3",
|
2025-06-15 13:49:34 +00:00
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
2025-06-16 22:41:11 +00:00
|
|
|
"crossfilter2": "^1.5.4",
|
2025-06-15 12:48:52 +00:00
|
|
|
"d3": "^7.9.0",
|
2025-06-21 23:22:11 +00:00
|
|
|
"date-fns": "^4.1.0",
|
Add tappable cards, detail bottom sheet, swipe gestures, and favorites view
- Decision types, services (decisionService, listingDetailService), and index exports
- useDecisions hook with optimistic updates and Map-based state
- useListingDetail hook with session-level caching
- PhotoCarousel component using embla-carousel-react
- ListingDetail component with full property info, like/dislike buttons
- ListingDetailSheet using vaul Drawer (slide-up bottom sheet)
- SwipeablePropertyCard with @use-gesture/react and @react-spring/web
- SwipeReviewMode for mobile full-screen swipe review
- FavoritesView with virtualized liked listings and remove button
- App.tsx integration: decision state, client-side disliked filtering, detail sheet, swipe handlers
- ListView conditionally renders SwipeablePropertyCard when handlers provided
- StatsBar adds 'saved' view mode with heart icon
- Header adds liked count indicator
- New deps: vaul, embla-carousel-react, @use-gesture/react, @react-spring/web
2026-02-21 15:48:17 +00:00
|
|
|
"embla-carousel-react": "^8.6.0",
|
2025-06-15 13:49:34 +00:00
|
|
|
"lucide-react": "^0.515.0",
|
2025-06-15 12:48:52 +00:00
|
|
|
"mapbox-gl": "^3.12.0",
|
2025-06-14 15:36:38 +00:00
|
|
|
"oidc-client-ts": "^3.2.1",
|
|
|
|
|
"react": "^19.1.0",
|
2025-06-21 23:22:11 +00:00
|
|
|
"react-day-picker": "^9.7.0",
|
2025-06-14 15:36:38 +00:00
|
|
|
"react-dom": "^19.1.0",
|
2025-06-17 20:42:41 +00:00
|
|
|
"react-hook-form": "^7.58.1",
|
2025-06-14 15:36:38 +00:00
|
|
|
"react-oidc-context": "^3.3.0",
|
2026-02-06 20:34:50 +00:00
|
|
|
"react-virtuoso": "^4.18.1",
|
2025-06-15 13:49:34 +00:00
|
|
|
"tailwind-merge": "^3.3.1",
|
2025-06-17 20:42:41 +00:00
|
|
|
"tailwindcss": "^4.1.10",
|
2026-02-21 11:34:53 +00:00
|
|
|
"vaul": "^1.1.2",
|
2025-06-17 20:42:41 +00:00
|
|
|
"zod": "^3.25.67"
|
2025-06-14 15:36:38 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@eslint/js": "^9.25.0",
|
2026-02-21 11:34:53 +00:00
|
|
|
"@testing-library/jest-dom": "^6.6.0",
|
|
|
|
|
"@testing-library/react": "^16.3.0",
|
|
|
|
|
"@testing-library/user-event": "^14.6.0",
|
2025-06-14 15:36:38 +00:00
|
|
|
"@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",
|
2026-02-21 11:34:53 +00:00
|
|
|
"jsdom": "^25.0.0",
|
|
|
|
|
"msw": "^2.7.0",
|
2025-06-15 13:49:34 +00:00
|
|
|
"tw-animate-css": "^1.3.4",
|
2025-06-14 15:36:38 +00:00
|
|
|
"typescript": "~5.8.3",
|
|
|
|
|
"typescript-eslint": "^8.30.1",
|
Add comprehensive test suite: 219 new tests across backend and frontend
Backend (103 tests):
- Unit tests for listing_service, export_service, district_service
- Regression tests for API response contracts and query parameter validation
- Integration tests for API workflows, Redis listing cache, listing processor pipeline, and repository advanced queries
- E2E tests for streaming with filters, batching, caching, and task management
Frontend (116 tests):
- Service tests for apiClient, streamingService, taskService, listingService, healthService
- Hook tests for useTaskProgress (WebSocket + polling)
- Component tests for PropertyCard, FilterPanel, Header, ListView, TaskProgressDrawer, TaskIndicator, StreamingProgressBar, HealthIndicator
- E2E tests for filter-stream-display flow
Infrastructure:
- Add pytest-xdist and test markers (regression, integration, e2e)
- Add conftest fixtures: fake_redis, rent_listing_factory, seeded_repository
- Add vitest + testing-library + MSW for frontend testing
2026-02-10 21:59:45 +00:00
|
|
|
"vite": "^6.3.5",
|
2026-02-21 11:34:53 +00:00
|
|
|
"vitest": "^3.0.0"
|
2025-06-14 15:36:38 +00:00
|
|
|
}
|
|
|
|
|
}
|