Merge branch 'development' into feat/tagsCRUD
Showing
+666 -16
.husky/pre-commit
0 → 100644
hooks/check_branch_name.js
0 → 100644
... | ... | @@ -19,14 +19,22 @@ |
"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", | ||
"db:seed": "npx sequelize-cli db:seed:all --config dist/infrastructure/db/config.js", | ||
"postinstall": "npx husky install", | ||
"check_branch_name": "node ./hooks/check_branch_name.js", | ||
"create:crud": "node ./scripts/CLI/createCRUD.js" | ||
}, | ||
"dependencies": { | ||
"@nestjs/common": "^10.0.0", | ||
"@nestjs/config": "^3.0.1", | ||
"@nestjs/core": "^10.0.0", | ||
"@nestjs/jwt": "^10.1.0", | ||
"@nestjs/passport": "^10.0.1", | ||
"@nestjs/platform-express": "^10.0.0", | ||
"@nestjs/sequelize": "^10.0.0", | ||
"@nestjs/swagger": "^7.1.8", | ||
"passport": "^0.6.0", | ||
"passport-jwt": "^4.0.1", | ||
"passport-local": "^1.0.0", | ||
"pg": "^8.11.2", | ||
"reflect-metadata": "^0.1.13", | ||
"rxjs": "^7.8.1", | ||
... | ... | @@ -40,12 +48,15 @@ |
"@types/express": "^4.17.17", | ||
"@types/jest": "^29.5.2", | ||
"@types/node": "^20.3.1", | ||
"@types/passport-local": "^1.0.35", | ||
"@types/supertest": "^2.0.12", | ||
"@typescript-eslint/eslint-plugin": "^6.0.0", | ||
"@typescript-eslint/parser": "^6.0.0", | ||
"eslint": "^8.42.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-no-loops": "^0.3.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"husky": "^8.0.3", | ||
"jest": "^29.5.0", | ||
"prettier": "^3.0.0", | ||
"sequelize-cli": "^6.6.1", | ||
... | ... |
Please register or sign in to comment