6520ebf221
Self-hosted, plugin-extensible personal finance manager built with ASP.NET Core 9.0, Vue 3 + Vuetify 3, and PostgreSQL 17. Backend (8 .NET projects): - Core: 19 domain models, 6 enums, 14 DTOs, 12 service interfaces - Data: EF Core DbContext, 16 entity configurations, category seeder - API: 14 controllers, 15 services, JWT auth, SignalR, middleware - Plugins: Abstractions + OFX/CSV/QIF file parsers - Tests: 28 xUnit tests (fingerprinting, duplicate detection, parsers) Frontend (Vue 3 + Vuetify 3 + TypeScript): - 13 views, Pinia stores, Axios API services with JWT interceptors - Dashboard, accounts, transactions, categories, imports, and more Deployment: - Docker Compose (PostgreSQL 17 + .NET API + nginx frontend) - Auto-migration on startup Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
666 B
JSON
31 lines
666 B
JSON
{
|
|
"name": "purrse-frontend",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@mdi/font": "^7.4.47",
|
|
"@microsoft/signalr": "^9.0.0",
|
|
"apexcharts": "^4.3.0",
|
|
"axios": "^1.7.9",
|
|
"date-fns": "^4.1.0",
|
|
"pinia": "^2.3.0",
|
|
"vue": "^3.5.13",
|
|
"vue-router": "^4.5.0",
|
|
"vue3-apexcharts": "^1.7.0",
|
|
"vuetify": "^3.7.6"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
"sass": "^1.83.0",
|
|
"typescript": "^5.7.2",
|
|
"vite": "^6.0.5",
|
|
"vue-tsc": "^2.2.0"
|
|
}
|
|
}
|