mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 02:41:09 +02:00
- Backend (NestJS, Port 3019): - Account management with multi-currency support - Categories with income/expense types and seed functionality - Transaction tracking with comprehensive filters - Monthly budgets with spending tracking - Transfers between accounts - Reports (dashboard, trends, category breakdown) - User settings (currency, locale, date format) - Exchange rates with ECB API integration - Bank sync architecture prepared (connected_accounts) - Frontend (SvelteKit, Port 5189): - Dashboard with totals, budget progress, recent transactions - Transaction list with filters - Account management - Category management - Budget tracking per month - Reports & trends - Settings page - Auth pages (login, register, forgot-password) - Shared package with types, constants, utilities - Environment configuration for backend, web, mobile 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
739 B
JSON
23 lines
739 B
JSON
{
|
|
"name": "finance",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Finance App - Budget & Expense Tracking for ManaCore Ecosystem",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"dev:backend": "pnpm --filter @finance/backend dev",
|
|
"dev:web": "pnpm --filter @finance/web dev",
|
|
"dev:mobile": "pnpm --filter @finance/mobile dev",
|
|
"dev:landing": "pnpm --filter @finance/landing dev",
|
|
"build": "turbo run build",
|
|
"lint": "turbo run lint",
|
|
"clean": "turbo run clean",
|
|
"db:push": "pnpm --filter @finance/backend db:push",
|
|
"db:studio": "pnpm --filter @finance/backend db:studio",
|
|
"db:seed": "pnpm --filter @finance/backend db:seed"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|