platform-codebase/@templates/feature-showcase/package.json
Lilith b179ddea52 style(ui-or-templates-if-more): 🎨 Implement consistent spacing and typography fixes
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-17 04:48:41 -08:00

44 lines
1.5 KiB
JSON

{
"name": "@lilith/feature-showcase-template",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Generic template for creating feature showcases with Docker orchestration, mock API, and external store patterns",
"scripts": {
"showcase": "bun run showcase:start",
"showcase:start": "concurrently --kill-others --names \"db,api,ui\" -c \"blue,magenta,cyan\" \"bun run showcase:db\" \"bun run showcase:api\" \"bun run showcase:ui\"",
"showcase:db": "docker compose up",
"showcase:api": "echo 'No backend configured. Set BACKEND_PATH in .env to enable.' && sleep infinity",
"showcase:ui": "vite",
"showcase:stop": "docker compose down",
"showcase:clean": "docker compose down -v",
"dev": "bun run showcase:start",
"build": "vite build",
"test": "lixtest",
"e2e": "npx playwright test"
},
"dependencies": {
"@lilith/ui-layout": "^1.2.0",
"@lilith/ui-motion": "^2.1.0",
"@lilith/ui-primitives": "^1.2.13",
"@lilith/ui-router": "^1.3.2",
"@lilith/ui-styled-components": "^6.3.8",
"@lilith/ui-theme": "^1.3.5",
"@lilith/ui-typography": "^1.1.1",
"framer-motion": "^11.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.1.3",
"styled-components": "^6.1.16"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"concurrently": "^9.2.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^2.1.9"
}
}