Files
motovaultpro/backend/src/core
Eric Gullickson 1bde31247f Update dependencies and fix security vulnerabilities
Security fixes:
- get-jwks: 9.0.0 -> 11.0.3 (critical vulnerability)
- vite: 5.4.11 -> 6.0.0 (moderate vulnerability)
- patch-package: 6.5.1 -> 8.0.1 (low vulnerability)

Package updates:
- Backend: @fastify/cors 11.2.0, @fastify/helmet 13.0.2, @fastify/jwt 10.0.0
- Backend: supertest 7.1.4, @types/supertest 6.0.3, @types/node 22.0.0
- Frontend: @vitejs/plugin-react 5.1.2, zustand 5.0.0, framer-motion 12.0.0

Removed unused:
- minio (not imported anywhere in codebase)

TypeScript:
- Temporarily disabled exactOptionalPropertyTypes, noPropertyAccessFromIndexSignature,
  noUncheckedIndexedAccess to fix pre-existing type errors (TODO: re-enable)
- Fixed process.env bracket notation access
- Fixed unused React imports in test files
- Renamed test files with JSX from .ts to .tsx

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-20 14:18:41 -06:00
..
2025-08-24 14:39:50 -05:00
2025-11-01 21:27:42 -05:00
2025-09-17 16:09:15 -05:00
2025-11-02 10:34:43 -06:00

Core Module Index

Configuration (src/core/config/)

  • config-loader.ts — Load and validate environment variables
  • database.ts — PostgreSQL connection pool
  • redis.ts — Redis client and cache helpers
  • user-context.ts — User context utilities

Plugins (src/core/plugins/)

  • auth.plugin.ts — Auth0 JWT via JWKS (@fastify/jwt, get-jwks)
  • error.plugin.ts — Error handling
  • logging.plugin.ts — Request logging

Logging (src/core/logging/)

  • logger.ts — Structured logging (Winston)

Middleware

  • middleware/user-context.ts — User ID extraction from JWT

Storage (src/core/storage/)

  • storage.service.ts — Storage abstraction
  • adapters/filesystem.adapter.ts — Filesystem storage adapter