mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 15:39:40 +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>
20 lines
405 B
JSON
20 lines
405 B
JSON
{
|
|
"name": "@finance/shared",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./types": "./src/types/index.ts",
|
|
"./utils": "./src/utils/index.ts",
|
|
"./constants": "./src/constants/index.ts"
|
|
},
|
|
"scripts": {
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|