{
  "name": "fasecmo-platform-backend",
  "version": "0.1.0",
  "private": true,
  "description": "Enterprise FinTech Wallet Backend (NestJS)",
  "scripts": {
    "start": "node dist/main.js",
    "start:dev": "nest start --watch",
    "build": "nest build",
    "lint": "eslint src/**/*.ts",
    "prisma:generate": "prisma generate",
    "prisma:migrate": "prisma migrate dev",
    "prisma:seed": "prisma db seed",
    "test": "jest",
    "test:unit": "jest --config ./jest.config.js --testPathPattern='test/unit' --runInBand",
    "test:integration": "jest --config ./jest.config.js --testPathPattern='test/integration' --runInBand --forceExit",
    "test:security": "jest --config ./jest.config.js --testPathPattern='test/security' --runInBand --forceExit",
    "test:e2e": "jest --config ./jest-e2e.json --runInBand --forceExit",
    "test:comprehensive": "jest --config ./jest.comprehensive.js --runInBand --forceExit",
    "test:auth": "jest --config ./jest.comprehensive.js auth.tests.ts --runInBand --forceExit",
    "test:wallet": "jest --config ./jest.comprehensive.js wallet.tests.ts --runInBand --forceExit",
    "test:orders": "jest --config ./jest.comprehensive.js order.tests.ts --runInBand --forceExit",
    "test:referral": "jest --config ./jest.comprehensive.js referral.tests.ts --runInBand --forceExit",
    "test:subscription": "jest --config ./jest.comprehensive.js subscription.tests.ts --runInBand --forceExit",
    "test:ban": "jest --config ./jest.comprehensive.js ban.tests.ts --runInBand --forceExit",
    "test:business-rules": "jest --config ./jest.comprehensive.js business-rules.tests.ts --runInBand --forceExit",
    "test:admin": "jest --config ./jest.comprehensive.js admin.tests.ts --runInBand --forceExit",
    "test:commission": "jest --config ./jest.comprehensive.js commission.tests.ts --runInBand --forceExit",
    "test:kyc": "jest --config ./jest.comprehensive.js kyc.tests.ts --runInBand --forceExit",
    "test:fines": "jest --config ./jest.comprehensive.js fines.tests.ts --runInBand --forceExit",
    "test:edge-cases": "jest --config ./jest.comprehensive.js edge-cases.tests.ts --runInBand --forceExit",
    "db:seed": "prisma db seed",
    "test:coverage": "jest --config ./jest.config.js --coverage --runInBand",
    "deploy:auto": "ts-node scripts/deploy.ts",
    "deploy:auto:skip-start": "ts-node scripts/deploy.ts --skip-start",
    "deploy:auto:build-only": "ts-node scripts/deploy.ts --skip-start --skip-frontend-build"
  },
  "dependencies": {
    "@nestjs/axios": "^4.0.1",
    "@nestjs/common": "^11.1.28",
    "@nestjs/config": "^4.0.4",
    "@nestjs/core": "^11.1.28",
    "@nestjs/jwt": "^11.0.2",
    "@nestjs/mapped-types": "^2.1.1",
    "@nestjs/passport": "^11.0.5",
    "@nestjs/platform-express": "^11.1.28",
    "@nestjs/platform-socket.io": "^11.1.28",
    "@nestjs/schedule": "^6.1.3",
    "@nestjs/swagger": "^11.4.6",
    "@nestjs/terminus": "^11.1.1",
    "@nestjs/throttler": "^6.1.0",
    "@nestjs/websockets": "^11.1.28",
    "@prisma/client": "^5.22.0",
    "@sentry/node": "^10.69.0",
    "@sentry/profiling-node": "^10.69.0",
    "@sentry/tracing": "^7.120.4",
    "@types/argon2": "^0.14.1",
    "@types/multer": "^2.2.0",
    "@types/pdfkit": "^0.17.6",
    "@types/uuid": "^10.0.0",
    "argon2": "^0.45.1",
    "bcrypt": "^5.1.1",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.14.1",
    "csv-stringify": "^6.8.1",
    "exceljs": "^4.4.0",
    "helmet": "^7.1.0",
    "ioredis": "^5.3.2",
    "multer": "^2.2.0",
    "passport": "^0.7.0",
    "passport-jwt": "^4.0.1",
    "pdfkit": "^0.19.1",
    "prisma": "^5.22.0",
    "prom-client": "^15.1.3",
    "redis": "^4.7.0",
    "reflect-metadata": "^0.2.2",
    "rxjs": "^7.8.1",
    "socket.io": "^4.8.1",
    "socket.io-client": "^4.7.5",
    "systeminformation": "^5.33.1",
    "ua-parser-js": "^2.0.10",
    "uuid": "^14.0.1",
    "winston": "^3.19.0",
    "winston-daily-rotate-file": "^5.0.0",
    "winston-transport": "^4.9.0"
  },
  "prisma": {
    "seed": "ts-node prisma/seed.ts"
  },
  "devDependencies": {
    "@nestjs/cli": "^11.0.0",
    "@nestjs/schematics": "^11.0.0",
    "@nestjs/testing": "^11.1.28",
    "@types/bcrypt": "^5.0.2",
    "@types/cors": "^2.8.17",
    "@types/express": "^4.17.21",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.14.10",
    "@types/passport-jwt": "^3.0.13",
    "@types/socket.io": "^3.0.2",
    "@types/supertest": "^7.2.1",
    "@typescript-eslint/eslint-plugin": "^7.13.0",
    "@typescript-eslint/parser": "^7.13.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.30.0",
    "jest": "^29.7.0",
    "supertest": "^7.2.2",
    "ts-jest": "^29.3.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.5.4"
  }
}
