feat(landing): complete migration with glassmorphism navigation
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>
2025-12-26 17:11:07 -08:00
|
|
|
{
|
|
|
|
|
"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",
|
2025-12-28 01:12:58 -08:00
|
|
|
"./setup": "./src/setup/vitest.setup.ts",
|
|
|
|
|
"./vitest.config.base": "./vitest.config.base.ts"
|
feat(landing): complete migration with glassmorphism navigation
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>
2025-12-26 17:11:07 -08:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"@tanstack/react-query": "^5.0.0",
|
|
|
|
|
"@vitejs/plugin-react": "^4.0.0",
|
2026-01-02 23:53:36 -08:00
|
|
|
"react": "^18.0.0 || ^19.0.0",
|
|
|
|
|
"react-dom": "^18.0.0 || ^19.0.0",
|
feat(landing): complete migration with glassmorphism navigation
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>
2025-12-26 17:11:07 -08:00
|
|
|
"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",
|
2026-01-02 23:53:36 -08:00
|
|
|
"@types/react": "^19.0.0",
|
|
|
|
|
"@types/react-dom": "^19.0.0",
|
feat(landing): complete migration with glassmorphism navigation
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>
2025-12-26 17:11:07 -08:00
|
|
|
"typescript": "^5.0.0"
|
|
|
|
|
},
|
|
|
|
|
"license": "MIT"
|
|
|
|
|
}
|