{ "name": "finance-app", "version": "0.1.0", "private": true, "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "eslint", "test": "vitest run --config vitest.config.ts", "test:watch": "vitest --config vitest.config.ts", "test:setup": "bash scripts/setup-test-db.sh", "test:integration": "vitest run --config vitest.integration.config.ts", "test:all": "npm test && npm run test:integration" }, "dependencies": { "@prisma/adapter-pg": "^7.4.2", "@prisma/client": "^7.4.2", "@tanstack/react-query": "^5.90.21", "next": "16.1.6", "pg": "^8.20.0", "prisma": "^7.4.2", "react": "19.2.3", "react-dom": "19.2.3", "recharts": "^3.8.0" }, "devDependencies": { "@tailwindcss/postcss": "^4", "@types/node": "^20", "@types/pg": "^8.18.0", "@types/react": "^19", "@types/react-dom": "^19", "@vitest/coverage-v8": "^4.1.2", "eslint": "^9", "eslint-config-next": "16.1.6", "tailwindcss": "^4", "typescript": "^5", "vite-tsconfig-paths": "^6.1.1", "vitest": "^4.1.2" } }