mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:21:09 +02:00
- 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>
25 lines
788 B
JSON
25 lines
788 B
JSON
{
|
|
"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"
|
|
}
|