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>
99 lines
No EOL
3.1 KiB
JSON
99 lines
No EOL
3.1 KiB
JSON
{
|
|
"name": "@lilith/landing",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Coming soon landing page with Simon-style user path selector",
|
|
"author": {
|
|
"name": "QuinnFTW",
|
|
"email": "TransQuinnFTW@pm.me",
|
|
"url": "https://github.com/transquinnftw"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/transquinnftw/lilith-platform.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/transquinnftw/lilith-platform/issues"
|
|
},
|
|
"homepage": "https://github.com/transquinnftw/lilith-platform#readme",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest run --passWithNoTests",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:e2e:debug": "playwright test --debug",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint . --ext ts,tsx"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/zname": "workspace:*",
|
|
"@lilith/analytics-client": "workspace:*",
|
|
"@lilith/api-client": "workspace:*",
|
|
"@lilith/auth-provider": "workspace:*",
|
|
"@lilith/design-tokens": "workspace:*",
|
|
"@lilith/i18n": "workspace:*",
|
|
"@lilith/plugin-payment": "workspace:*",
|
|
"@lilith/react-hooks": "workspace:*",
|
|
"@lilith/theme-provider": "workspace:*",
|
|
"@lilith/types": "workspace:*",
|
|
"@lilith/ui": "workspace:*",
|
|
"@lilith/ui-accessibility": "workspace:*",
|
|
"@lilith/ui-animated": "workspace:*",
|
|
"@lilith/ui-backgrounds": "workspace:*",
|
|
"@lilith/ui-effects-mouse": "workspace:*",
|
|
"@lilith/ui-effects-sound": "workspace:*",
|
|
"@lilith/ui-interactive-grid": "workspace:*",
|
|
"@lilith/ui-theme": "workspace:*",
|
|
"@lilith/ui-themes": "workspace:*",
|
|
"@tanstack/query-core": "^5.90.12",
|
|
"@tanstack/react-query": "^5.90.12",
|
|
"framer-motion": "^11.18.2",
|
|
"goober": "^2.1.0",
|
|
"lucide-react": "^0.553.0",
|
|
"outvariant": "^1.4.3",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"react-error-boundary": "^4.0.0",
|
|
"react-hot-toast": "^2.4.0",
|
|
"react-i18next": "^15.5.0",
|
|
"react-router": "^7.11.0",
|
|
"react-router-dom": "^7.11.0",
|
|
"styled-components": "^6.0.0",
|
|
"tslib": "^2.8.1",
|
|
"until-async": "^3.0.2",
|
|
"zod": "^3.22.0"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/config": "workspace:*",
|
|
"@lilith/test-utils": "workspace:*",
|
|
"@playwright/test": "^1.56.1",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/react": "^18.0.0",
|
|
"@types/react-dom": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"@vitest/coverage-v8": "^1.0.0",
|
|
"eslint": "^8.0.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-react": "^7.33.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"graphql": "^16.12.0",
|
|
"jsdom": "^24.0.0",
|
|
"msw": "^2.0.0",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^2.0.0"
|
|
},
|
|
"msw": {
|
|
"workerDirectory": [
|
|
"public"
|
|
]
|
|
}
|
|
} |