mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 13:25:48 +02:00
✨ feat(nutriphi): add AI-powered nutrition tracking app
- NestJS backend with Gemini AI for food photo analysis - SvelteKit web app with Svelte 5 runes - Drizzle ORM schema for meals, goals, favorites, recommendations - Unified auth pages using shared-auth-ui components - Landing page with Astro - Shared types and utilities package
This commit is contained in:
parent
b77dd4159b
commit
b6af01ed67
70 changed files with 4256 additions and 4 deletions
19
apps/nutriphi/package.json
Normal file
19
apps/nutriphi/package.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"name": "nutriphi",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"description": "NutriPhi - AI-powered nutrition tracking with photo analysis",
|
||||
"scripts": {
|
||||
"dev": "pnpm run --filter=@nutriphi/* --parallel dev",
|
||||
"dev:backend": "pnpm --filter @nutriphi/backend dev",
|
||||
"dev:web": "pnpm --filter @nutriphi/web dev",
|
||||
"dev:landing": "pnpm --filter @nutriphi/landing dev",
|
||||
"db:push": "pnpm --filter @nutriphi/backend db:push",
|
||||
"db:studio": "pnpm --filter @nutriphi/backend db:studio",
|
||||
"db:seed": "pnpm --filter @nutriphi/backend db:seed"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"packageManager": "pnpm@9.15.0"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue