mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:01:09 +02:00
- Delete nestjs-backend.md guideline (replaced by hono-server.md) - Delete Dockerfile.nestjs-base and Dockerfile.nestjs templates - Delete stale BACKEND_ARCHITECTURE.md doc (NestJS-era, obsolete) - Update CLAUDE.md, GUIDELINES.md, authentication.md to Hono/Bun first - Update all app CLAUDE.md files: backend/ → server/, NestJS → Hono+Bun - Update all app package.json files: @*/backend → @*/server - Update docs: LOCAL_DEVELOPMENT, PORT_SCHEMA, ENVIRONMENT_VARIABLES, DATABASE_MIGRATIONS, MAC_MINI_SERVER, PROJECT_OVERVIEW - Update scripts: generate-env.mjs, setup-databases.sh, build-app.sh - Update CI/CD: cd-macmini.yml backend → server paths - Update Astro docs site: @chat/backend → @chat/server Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
973 B
JSON
24 lines
973 B
JSON
{
|
|
"name": "nutriphi",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"description": "NutriPhi - AI-powered nutrition tracking with photo analysis",
|
|
"scripts": {
|
|
"dev": "pnpm run --filter=@nutriphi/* --parallel dev",
|
|
"dev:server": "pnpm --filter @nutriphi/server dev",
|
|
"dev:web": "pnpm --filter @nutriphi/web dev",
|
|
"dev:landing": "pnpm --filter @nutriphi/landing dev",
|
|
"db:push": "pnpm --filter @nutriphi/server db:push",
|
|
"db:studio": "pnpm --filter @nutriphi/server db:studio",
|
|
"db:seed": "pnpm --filter @nutriphi/server db:seed",
|
|
"test": "pnpm --filter @nutriphi/server test && pnpm --filter @nutriphi/shared test && pnpm --filter @nutriphi/web test",
|
|
"test:backend": "pnpm --filter @nutriphi/server test",
|
|
"test:web": "pnpm --filter @nutriphi/web test",
|
|
"test:shared": "pnpm --filter @nutriphi/shared test",
|
|
"test:cov": "pnpm --filter @nutriphi/server test:cov"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|