| { | |
| "name": "backend", | |
| "description": "", | |
| "private": true, | |
| "license": "UNLICENSED", | |
| "scripts": { | |
| "build": "nest build", | |
| "format": "prettier --write \"**/*.{js,ts,json,md}\"", | |
| "start": "nest start", | |
| "dev": "nest start --watch", | |
| "start:debug": "nest start --debug --watch", | |
| "start:prod": "node dist/main", | |
| "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | |
| "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 test/jest-e2e.json" | |
| }, | |
| "dependencies": { | |
| "@liaoliaots/nestjs-redis": "^9.0.5", | |
| "@nestjs/common": "^10.2.8", | |
| "@nestjs/config": "^3.1.1", | |
| "@nestjs/core": "^10.2.8", | |
| "@nestjs/platform-fastify": "^10.2.8", | |
| "@prisma/client": "workspace:@nest-http/prisma@*", | |
| "bcrypt": "^5.1.0", | |
| "fastify": "^4.24.3", | |
| "gpt-tokenizer": "^2.1.2", | |
| "ioredis": "^5.3.2", | |
| "joi": "^17.9.2", | |
| "jose": "^4.14.1", | |
| "js-yaml": "^4.1.0", | |
| "mint-filter": "^4.0.3", | |
| "nestjs-prisma": "^0.22.0", | |
| "openai": "^4.14.0", | |
| "prisma-extension-pagination": "^0.5.0", | |
| "reflect-metadata": "^0.1.13", | |
| "rxjs": "^7.8.1", | |
| "spark-md5": "^3.0.2" | |
| }, | |
| "devDependencies": { | |
| "@nestjs/cli": "^10.2.1", | |
| "@nestjs/schematics": "^10.0.3", | |
| "@nestjs/testing": "^10.2.8", | |
| "@types/jest": "^29.5.2", | |
| "@types/js-yaml": "^4.0.5", | |
| "@types/mocha": "^10.0.2", | |
| "@types/node": "*", | |
| "@types/supertest": "^2.0.12", | |
| "@typescript-eslint/eslint-plugin": "^5.59.11", | |
| "@typescript-eslint/parser": "^5.59.11", | |
| "eslint": "^8.42.0", | |
| "eslint-config-prettier": "^8.8.0", | |
| "eslint-plugin-prettier": "^4.2.1", | |
| "eslint-plugin-simple-import-sort": "^10.0.0", | |
| "jest": "^29.5.0", | |
| "prisma": "*", | |
| "shared": "workspace:*", | |
| "source-map-support": "^0.5.21", | |
| "supertest": "^6.3.3", | |
| "ts-jest": "^29.1.0", | |
| "ts-loader": "^9.4.3", | |
| "ts-node": "*", | |
| "tsconfig-paths": "^4.2.0", | |
| "typescript": "*" | |
| }, | |
| "jest": { | |
| "moduleFileExtensions": [ | |
| "js", | |
| "json", | |
| "ts" | |
| ], | |
| "rootDir": "src", | |
| "testRegex": ".*\\.spec\\.ts$", | |
| "transform": { | |
| "^.+\\.(t|j)s$": "ts-jest" | |
| }, | |
| "collectCoverageFrom": [ | |
| "**/*.(t|j)s" | |
| ], | |
| "coverageDirectory": "./coverage", | |
| "testEnvironment": "node" | |
| }, | |
| "packageManager": "pnpm@8.6.3" | |
| } | |