108 lines
3.1 KiB
JSON
108 lines
3.1 KiB
JSON
{
|
|
"name": "ebitemp-api",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"format": "prettier --list-different --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"dev": "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": {
|
|
"@anatine/zod-nestjs": "^2.0.10",
|
|
"@anatine/zod-openapi": "^2.2.7",
|
|
"@autotelic/pino-seq-transport": "^0.1.0",
|
|
"@fastify/send": "^4.0.0",
|
|
"@fastify/static": "^8.1.0",
|
|
"@keyv/redis": "^4.2.0",
|
|
"@nestjs/common": "^11.0.8",
|
|
"@nestjs/config": "^4.0.0",
|
|
"@nestjs/core": "^11.0.8",
|
|
"@nestjs/jwt": "^11.0.0",
|
|
"@nestjs/passport": "^11.0.5",
|
|
"@nestjs/platform-express": "^11.0.8",
|
|
"@nestjs/platform-fastify": "^11.0.8",
|
|
"@nestjs/schedule": "^5.0.1",
|
|
"@nestjs/swagger": "^11.0.3",
|
|
"@nestjs/terminus": "^11.0.0",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"@stdlib/assert": "^0.3.3",
|
|
"argon2": "^0.41.1",
|
|
"async-lock": "^1.4.1",
|
|
"axios": "^1.7.9",
|
|
"bcrypt": "^5.1.1",
|
|
"cacheable": "^1.8.8",
|
|
"connection-string": "^4.4.0",
|
|
"cron": "^3.5.0",
|
|
"dayjs": "^1.11.13",
|
|
"fastify": "^5.2.1",
|
|
"flatted": "^3.3.2",
|
|
"lodash": "^4.17.21",
|
|
"nestjs-cls": "^5.4.1",
|
|
"nestjs-paginate": "^11.1.1",
|
|
"nestjs-pino": "^4.3.0",
|
|
"openapi3-ts": "^4.4.0",
|
|
"passport-jwt": "^4.0.1",
|
|
"passport-local": "^1.0.0",
|
|
"pino-http": "^10.4.0",
|
|
"pino-pretty": "^13.0.0",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rxjs": "^7.8.1",
|
|
"tozod": "^3.0.0",
|
|
"typeorm": "^0.3.20",
|
|
"typeorm-naming-strategies": "^4.1.0",
|
|
"typeorm-scoped": "^1.2.0",
|
|
"typeorm-transactional": "^0.5.0",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/eslint-config": "workspace:*",
|
|
"@repo/typescript-config": "workspace:*",
|
|
"@nestjs/schematics": "^11.0.0",
|
|
"@nestjs/testing": "^11.0.1",
|
|
"@swc/cli": "^0.6.0",
|
|
"@swc/core": "^1.10.7",
|
|
"@types/async-lock": "^1.4.2",
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/express": "^5.0.0",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/lodash": "^4.17.15",
|
|
"@types/node": "^22.10.7",
|
|
"@types/passport-jwt": "^4.0.1",
|
|
"@types/supertest": "^6.0.2",
|
|
"globals": "^16.0.0",
|
|
"jest": "^29.7.0",
|
|
"mssql": "^11.0.1",
|
|
"prettier": "^3.4.2",
|
|
"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": "src",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"**/*.(t|j)s"
|
|
],
|
|
"coverageDirectory": "../coverage",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|