lilith-platform.live/codebase/@features/my/frontend-public/package.json
Natalie 2309a6a477 fix(my): unwrap credentials list envelope from quinn.api
GET /api/credentials now returns { total, credentials } via the quinn.api
proxy, but the dashboard still treated the body as a bare array and crashed
with .filter is not a function. Add a shared parser, unit test, and e2e guard.
2026-06-22 21:15:42 -04:00

61 lines
1.9 KiB
JSON

{
"name": "@lilith/my-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "bun@1.2.6",
"scripts": {
"dev": "vite --port 5174 --host ::",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "bun test src",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@lilith/account-popout": "^1.0.0",
"@lilith/qr-device-login-react": "^0.1.2",
"@lilith/quinn-app-switcher": "*",
"@lilith/ui-forms": "^1.2.0",
"@lilith/ui-icons": "^1.2.2",
"@lilith/ui-layout": "^1.2.0",
"@lilith/ui-motion": "^2.2.0",
"@lilith/ui-navigation": "^1.2.9",
"@lilith/ui-router": "^1.3.2",
"@lilith/ui-styled-components": "^6.3.9",
"@lilith/ui-tables": "1.0.1",
"@lilith/ui-typography": "^1.1.7",
"@lilith/vite-version-plugin": "^1.2.0",
"lucide-react": "^0.460.0",
"otpauth": "^9.5.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^7.12.0",
"react-simple-maps": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@lilith/configs": "^2.5.0",
"@lilith/eslint-plugin-file-length": "^1.0.22",
"@lilith/eslint-plugin-import-alias": "^1.1.1",
"@lilith/lix-build": "^1.0.7",
"@lilith/lix-test": "^1.0.0",
"@playwright/test": "^1.52.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/react-simple-maps": "^3.0.6",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^6.4.1"
}
}