update: somee

This commit is contained in:
mahyargdz
2025-01-23 10:21:24 +03:30
parent e3762c1eba
commit 8af72264e7
11 changed files with 198 additions and 166 deletions
+10 -8
View File
@@ -11,8 +11,8 @@
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"start:prod": "NODE_ENV=production node --trace-warnings dist/main",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
@@ -24,13 +24,14 @@
"migration:create": "npx typeorm-ts-node-commonjs migration:create ./database/migrations/$npm_config_name",
"migration:revert": "npx typeorm-ts-node-commonjs migration:revert -d ./database/connection.ts",
"migration:show": "npx typeorm-ts-node-commonjs migration:show -d ./database/connection.ts ",
"prepare": "husky || true"
"prepare": "husky"
},
"dependencies": {
"@fastify/static": "^7.0.4",
"@keyv/redis": "^4.2.0",
"@nest-lab/throttler-storage-redis": "^1.0.0",
"@nestjs-modules/mailer": "^2.0.2",
"@nestjs/axios": "^4.0.0",
"@nestjs/cache-manager": "^3.0.0",
"@nestjs/common": "^10.4.15",
"@nestjs/config": "^4.0.0",
@@ -63,13 +64,14 @@
"@nestjs/cli": "^10.4.9",
"@nestjs/schematics": "^10.2.3",
"@nestjs/testing": "^10.4.15",
"@types/express": "^5.0.0",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.14",
"@types/nodemailer": "^6.4.17",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
@@ -104,8 +106,8 @@
"testEnvironment": "node",
"lint-staged": {
"**/*.ts": [
"pnpm run format",
"pnpm run lint:fix",
"pnpm format",
"pnpm lint:fix",
"git add ."
]
}