managarten/apps/quote/packages/web-ui/package.json
Till-JS ea3285dcbb feat(quote): integrate Quote app into monorepo
- Add complete Quote app with mobile (Expo), web (SvelteKit), landing (Astro), and backend (NestJS)
- Create NestJS backend with Drizzle ORM for PostgreSQL
- Add API endpoints for favorites and user lists
- Add database schema for favorites and user_lists tables
- Update root package.json with quote dev scripts
- Add Quote environment variables to generate-env.mjs
- Add missing toast.ts store for web app
- Configure hybrid content strategy (static + API)

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-27 14:44:33 +01:00

26 lines
575 B
JSON

{
"name": "@quote/web-ui",
"version": "1.0.0",
"type": "module",
"exports": {
".": "./src/index.ts",
"./styles": "./src/styles/index.ts",
"./components/*": "./src/components/*.svelte",
"./stores/*": "./src/stores/*.ts"
},
"scripts": {
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"dependencies": {
"@quote/shared": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.0.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.0.0"
}
}