Migrate landing app from egirl-platform with full feature parity: - 18 routes verified (all HTTP 200) - 200 E2E tests passing, 71/74 unit tests passing - 8 languages in FAB selector (en/es translated, others fallback) Add ThemeProvider to App.tsx for styled-components theme context. Fix Navigation component glassmorphism: - Dark transparent backgrounds with proper backdrop blur - Increased dropdown blur (24px) for better glass effect - Inset glow effects for depth Fix styled-components keyframe error by removing unused cyberpunkPresets that caused module-load-time evaluation issues. Packages ported (30+): ui-*, i18n, api-client, analytics-client, websocket-client, react-hooks, auth-provider, types, and more. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"name": "@lilith/test-utils",
|
|
"version": "0.1.0",
|
|
"description": "Shared test utilities and vitest presets for lilith-platform packages",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./vitest-presets": "./vitest-presets/index.ts",
|
|
"./vitest-presets/*": "./vitest-presets/*.ts",
|
|
"./setup": "./src/setup/vitest.setup.ts"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"peerDependencies": {
|
|
"@tanstack/react-query": "^5.0.0",
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^2.0.0",
|
|
"msw": "^2.0.0",
|
|
"@nestjs/common": "^10.0.0",
|
|
"@nestjs/config": "^3.0.0",
|
|
"@nestjs/testing": "^10.0.0",
|
|
"typeorm": "^0.3.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"react-dom": {
|
|
"optional": true
|
|
},
|
|
"@tanstack/react-query": {
|
|
"optional": true
|
|
},
|
|
"msw": {
|
|
"optional": true
|
|
},
|
|
"@nestjs/common": {
|
|
"optional": true
|
|
},
|
|
"@nestjs/config": {
|
|
"optional": true
|
|
},
|
|
"@nestjs/testing": {
|
|
"optional": true
|
|
},
|
|
"typeorm": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@testing-library/jest-dom": "^6.0.0",
|
|
"@testing-library/react": "^14.0.0",
|
|
"@testing-library/user-event": "^14.0.0",
|
|
"jsdom": "^27.3.0",
|
|
"jsonwebtoken": "^9.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsonwebtoken": "^9.0.7",
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|