mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 09:06:42 +02:00
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>
This commit is contained in:
parent
3a8d6bcf94
commit
ea3285dcbb
285 changed files with 645599 additions and 8 deletions
25
apps/quote/package.json
Normal file
25
apps/quote/package.json
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"name": "quote",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"description": "Quote App - Daily Inspiration",
|
||||
"scripts": {
|
||||
"dev": "turbo run dev",
|
||||
"dev:backend": "pnpm --filter @quote/backend dev",
|
||||
"dev:web": "pnpm --filter @quote/web dev",
|
||||
"dev:landing": "pnpm --filter @quote/landing dev",
|
||||
"dev:mobile": "pnpm --filter @quote/mobile dev",
|
||||
"build": "turbo run build",
|
||||
"lint": "turbo run lint",
|
||||
"type-check": "turbo run type-check",
|
||||
"clean": "turbo run clean",
|
||||
"db:push": "pnpm --filter @quote/backend db:push",
|
||||
"db:studio": "pnpm --filter @quote/backend db:studio",
|
||||
"db:seed": "pnpm --filter @quote/backend db:seed"
|
||||
},
|
||||
"devDependencies": {
|
||||
"turbo": "^2.3.0",
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"packageManager": "pnpm@9.15.0"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue