finances/package.json
Natalie d8ae381847 feat: stub extraction of finances to dedicated app (Nest+PWA+MCP+DB) modeled on prospector
- Full skeleton: backend modules (financials per LP contract + shape), auth/health, web PWA tabs (dashboard/income/etc), mcp stub, migrations, docs (FINANCES.md + detailed MIGRATION_FROM_LP.md), CLAUDE, STANDARDS, run/scripts.
- Design embodied: scope from lp.live entities/financials + surfaces/my/financials* + my/backend schema + frontend Financials* pages/tabs + docs/quinn-my/financials.md
- Follows prospector extraction precedent exactly for future cutover/proxies from lp.live
- Verified: structure ls, partial tsc (dep errors only), files read
2026-06-29 16:13:15 -04:00

41 lines
1.2 KiB
JSON

{
"name": "@finances/app",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Quinn Finances — standalone provider financial dashboard + aggregates. NestJS backend + own DB in src/; web/ PWA (dashboard + income/subs/purchases/pending/roi/cashflow/tour-legs views); @packages/mcp-finances agent interface. Extracted from lp.live quinn-api + my/.",
"scripts": {
"build": "nest build",
"start": "node dist/main.js",
"start:dev": "nest start --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"workspaces": [
"@packages/mcp-finances",
"web"
],
"dependencies": {
"@nestjs/common": "11.1.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "11.1.11",
"@nestjs/platform-express": "11.1.11",
"@nestjs/schedule": "^6.0.0",
"@nestjs/swagger": "^11.2.5",
"@nestjs/typeorm": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"pg": "^8.17.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "11.0.9",
"@nestjs/testing": "^11.1.12",
"@types/node": "^20.19.30",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}