platform-codebase/features/profile/frontend/package.json
Quinn Ftw 965bbac987 feat(profile): add profile configs and feature flags integration
Add profile configuration modules:
- clientProfileConfig, investorProfileConfig, providerProfileConfig
- Filter constants for profile search/filtering
- Replace @transquinnftw/profile-editor with @lilith/feature-flags

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 04:00:20 -08:00

37 lines
1 KiB
JSON

{
"name": "@lilith/profile",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "User profile management and editing feature",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx"
},
"dependencies": {
"@lilith/auth-provider": "workspace:*",
"@lilith/feature-flags": "workspace:*",
"@lilith/types": "workspace:*",
"@transquinnftw/ui-primitives": "^1.1.0",
"@transquinnftw/ui-typography": "^1.0.0",
"@transquinnftw/ui-theme": "^1.0.0",
"@tanstack/react-query": "^5.90.12",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^7.11.0",
"styled-components": "^6.0.0"
},
"devDependencies": {
"@transquinnftw/configs": "^1.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.0.0",
"typescript": "^5.9.3",
"vite": "^5.0.0",
"vitest": "^2.0.0"
}
}