{ "name": "monie-backend", "version": "0.0.1", "description": "", "author": "", "private": true, "license": "UNLICENSED", "scripts": { "build": "nest build", "format": "biome format --write .", "start:auth": "nest start auth --watch", "start:gateway": "nest start gateway --watch", "start:bookings": "nest start bookings --watch", "start:tasks": "nest start tasks --watch", "start:notifications": "nest start notifications --watch", "start": "nest start gateway", "start:dev": "concurrently \"npm run start:auth\" \"npm run start:gateway\" \"npm run start:bookings\" \"npm run start:tasks\" \"npm run start:notifications\"", "start:debug": "nest start gateway --debug --watch", "start:prod": "node dist/apps/gateway/main", "lint": "biome lint --write .", "check": "biome check .", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --config ./apps/gateway/test/jest-e2e.json", "prepare": "husky" }, "dependencies": { "@nestjs/common": "^11.0.1", "@nestjs/core": "^11.0.1", "@nestjs/platform-express": "^11.0.1", "reflect-metadata": "^0.2.2", "rxjs": "^7.8.1" }, "devDependencies": { "@biomejs/biome": "^2.4.5", "@commitlint/cli": "^20.5.0", "@commitlint/config-conventional": "^20.5.0", "@nestjs/cli": "^11.0.0", "@nestjs/schematics": "^11.0.0", "@nestjs/testing": "^11.0.1", "@types/express": "^5.0.0", "@types/jest": "^30.0.0", "@types/node": "^24.0.0", "@types/supertest": "^7.0.0", "concurrently": "^9.2.1", "husky": "^9.1.7", "jest": "^30.0.0", "source-map-support": "^0.5.21", "supertest": "^7.0.0", "ts-jest": "^29.2.5", "ts-loader": "^9.5.2", "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", "typescript": "^5.7.3" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": ".", "testRegex": ".*\\.spec\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverageFrom": [ "**/*.(t|j)s" ], "coverageDirectory": "./coverage", "testEnvironment": "node", "roots": [ "/apps/" ] } }