Backend updates: - zod: 3.24.1 → 4.3.6 (major) - bcryptjs: 2.4.3 → 3.0.3 (major) - jsonwebtoken: 9.0.2 → 9.0.3 (patch) - @types/bcryptjs: 2.4.6 → 3.0.0 (major) Frontend updates: - next-auth: 5.0.0-beta.25 → 5.0.0-beta.30 (latest v5 beta) - react: 19.1.0 → 19.2.4 (patch) - react-dom: 19.1.0 → 19.2.4 (patch) - recharts: 2.15.4 → 3.7.0 (major) - tailwind-merge: 2.6.1 → 3.5.0 (major) - @types/node: 22.12.0 → 25.3.0 (major) - tailwindcss: 3.4.19 → 4.2.0 (major) Notes: - All dependencies updated to absolute latest stable versions - next-auth kept on v5 beta (upgraded to latest beta.30) - See DEPENDENCY_UPDATES.md for full details and testing checklist - Potential breaking changes in zod v4, bcryptjs v3, recharts v3, and tailwindcss v4 - Configuration files may need updates for tailwindcss v4 compatibility
28 lines
658 B
JSON
28 lines
658 B
JSON
{
|
|
"name": "fiscal-backend",
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"db:migrate": "bun run src/db/migrate.ts",
|
|
"db:seed": "bun run src/db/seed.ts"
|
|
},
|
|
"dependencies": {
|
|
"@elysiajs/cors": "^1.4.1",
|
|
"@elysiajs/swagger": "^1.3.1",
|
|
"elysia": "^1.4.25",
|
|
"pg": "^8.18.0",
|
|
"postgres": "^3.4.8",
|
|
"dotenv": "^17.3.1",
|
|
"zod": "^4.3.6",
|
|
"bcryptjs": "^3.0.3",
|
|
"jsonwebtoken": "^9.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/pg": "^8.16.0",
|
|
"@types/bcryptjs": "^3.0.0",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"bun-types": "latest"
|
|
}
|
|
}
|