|
| 1 | +{ |
| 2 | + "name": "@app/users-microservice", |
| 3 | + "version": "0.0.1", |
| 4 | + "private": true, |
| 5 | + "description": "", |
| 6 | + "license": "UNLICENSED", |
| 7 | + "author": "", |
| 8 | + "scripts": { |
| 9 | + "prebuild": "rm -rf dist", |
| 10 | + "build": "pnpm with-env nest build", |
| 11 | + "clean": "rm -rf .turbo node_modules dist", |
| 12 | + "dev": "pnpm with-env nest start --watch", |
| 13 | + "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", |
| 14 | + "lint": "eslint ./src", |
| 15 | + "lint:fix": "eslint ./src --fix", |
| 16 | + "start": "pnpm with-env nest start", |
| 17 | + "start:debug": "pnpm with-env nest start --debug --watch", |
| 18 | + "start:prod": "pnpm with-env node dist/main", |
| 19 | + "test": "pnpm with-env jest", |
| 20 | + "test:cov": "pnpm with-env jest --coverage", |
| 21 | + "test:debug": "pnpm with-env node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", |
| 22 | + "test:e2e": "pnpm with-env jest --config ./test/jest-e2e.json", |
| 23 | + "test:watch": "pnpm with-env jest --watch", |
| 24 | + "typecheck": "tsc --noEmit --emitDeclarationOnly false", |
| 25 | + "with-env": "dotenv -e ../../.env --" |
| 26 | + }, |
| 27 | + "prettier": "@app/prettier-config", |
| 28 | + "jest": { |
| 29 | + "collectCoverageFrom": [ |
| 30 | + "**/*.(t|j)s" |
| 31 | + ], |
| 32 | + "coverageDirectory": "../coverage", |
| 33 | + "moduleFileExtensions": [ |
| 34 | + "js", |
| 35 | + "json", |
| 36 | + "ts" |
| 37 | + ], |
| 38 | + "rootDir": "src", |
| 39 | + "testEnvironment": "node", |
| 40 | + "testRegex": ".*\\.spec\\.ts$", |
| 41 | + "transform": { |
| 42 | + "^.+\\.(t|j)s$": "ts-jest" |
| 43 | + } |
| 44 | + }, |
| 45 | + "dependencies": { |
| 46 | + "@fastify/multipart": "catalog:nestjs", |
| 47 | + "@fastify/static": "catalog:nestjs", |
| 48 | + "@nestjs/common": "catalog:nestjs", |
| 49 | + "@nestjs/config": "catalog:nestjs", |
| 50 | + "@nestjs/core": "catalog:nestjs", |
| 51 | + "@nestjs/microservices": "catalog:nestjs", |
| 52 | + "@nestjs/platform-fastify": "catalog:nestjs", |
| 53 | + "class-transformer": "catalog:nestjs", |
| 54 | + "class-validator": "catalog:nestjs", |
| 55 | + "dotenv-cli": "catalog:", |
| 56 | + "nats": "catalog:nestjs", |
| 57 | + "reflect-metadata": "catalog:nestjs", |
| 58 | + "rxjs": "catalog:nestjs", |
| 59 | + "zod": "catalog:" |
| 60 | + }, |
| 61 | + "devDependencies": { |
| 62 | + "@app/api-core": "workspace:*", |
| 63 | + "@app/constants": "workspace:*", |
| 64 | + "@app/eslint-config-nest": "workspace:*", |
| 65 | + "@app/tsconfig": "workspace:*", |
| 66 | + "@nestjs/cache-manager": "catalog:nestjs", |
| 67 | + "@nestjs/cli": "catalog:nestjs", |
| 68 | + "@nestjs/schematics": "catalog:nestjs", |
| 69 | + "@nestjs/testing": "catalog:nestjs", |
| 70 | + "@types/jest": "catalog:", |
| 71 | + "@types/node": "catalog:", |
| 72 | + "@types/supertest": "catalog:nestjs", |
| 73 | + "cache-manager": "catalog:nestjs", |
| 74 | + "cache-manager-redis-store": "catalog:nestjs", |
| 75 | + "eslint": "catalog:nestjs", |
| 76 | + "jest": "catalog:", |
| 77 | + "prettier": "catalog:", |
| 78 | + "redis": "catalog:nestjs", |
| 79 | + "source-map-support": "catalog:nestjs", |
| 80 | + "supertest": "catalog:nestjs", |
| 81 | + "ts-jest": "catalog:nestjs", |
| 82 | + "ts-loader": "catalog:nestjs", |
| 83 | + "ts-node": "catalog:nestjs", |
| 84 | + "tsconfig-paths": "catalog:nestjs", |
| 85 | + "typescript": "catalog:" |
| 86 | + } |
| 87 | +} |
0 commit comments