mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 23:41:08 +02:00
Add new Planta project for plant care management with: Backend (NestJS): - Plant CRUD with species, location, and care requirements - Watering tracking and scheduling - Photo management with S3 storage - AI-powered plant analysis using Google Gemini Vision API - Drizzle ORM with PostgreSQL schema Web (SvelteKit): - Dashboard with plant overview - Plant detail pages with care history - Add/edit plant forms - Auth integration with login/register routes - API client layer for all endpoints Infrastructure: - Database setup in setup-databases.sh - MinIO bucket for plant photos - Environment variables for port 3022 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
514 B
JSON
18 lines
514 B
JSON
{
|
|
"name": "planta",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Planta - Plant Documentation & Care App",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"dev:backend": "pnpm --filter @planta/backend dev",
|
|
"dev:web": "pnpm --filter @planta/web dev",
|
|
"db:push": "pnpm --filter @planta/backend db:push",
|
|
"db:studio": "pnpm --filter @planta/backend db:studio",
|
|
"db:seed": "pnpm --filter @planta/backend db:seed"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|