|
20 | 20 | "test:watch": "jest --config ./test/unit/jest-unit.json --watch", |
21 | 21 | "test:cov": "jest --coverage", |
22 | 22 | "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", |
23 | | - "test:e2e": "jest --config ./test/e2e/jest-e2e.json --runInBand", |
| 23 | + "test:e2e": "jest --config ./test/e2e/jest-e2e.json", |
24 | 24 | "test:unit": "jest --config ./test/unit/jest-unit.json --runInBand", |
25 | 25 | "typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/config/ormconfig.ts", |
26 | 26 | "orm-create": "npm run typeorm migration:create -- -n", |
27 | 27 | "migrate": "npm run typeorm migration:run", |
28 | 28 | "migration:rollback": "npm run typeorm migration:revert", |
29 | 29 | "seed": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed -n ./src/config/ormconfig.ts", |
30 | | - "precommit": "lint-staged && npm run lint && npm run test:unit", |
31 | | - "prepush": "npm run test:unit", |
| 30 | + "precommit": "lint-staged && npm run lint && npm run test:unit && npm run test:e2e", |
| 31 | + "prepush": "npm run test:unit && npm run test:e2e", |
32 | 32 | "prepare": "husky install" |
33 | 33 | }, |
34 | 34 | "dependencies": { |
|
45 | 45 | "@nestjs/throttler": "^2.0.0", |
46 | 46 | "@nestjs/typeorm": "^8.0.3", |
47 | 47 | "@types/cookie-parser": "^1.4.2", |
| 48 | + "aws-sdk": "^2.1092.0", |
48 | 49 | "bcrypt": "^5.0.0", |
49 | 50 | "bull": "^4.2.1", |
50 | 51 | "class-transformer": "^0.5.1", |
|
53 | 54 | "cookie-parser": "^1.4.6", |
54 | 55 | "coveralls": "^3.1.1", |
55 | 56 | "ioredis": "^4.28.3", |
| 57 | + "nest-winston": "^1.6.2", |
56 | 58 | "nestjs-i18n": "^8.2.2", |
57 | 59 | "nestjs-throttler-storage-redis": "^0.1.18", |
58 | 60 | "nodemailer": "^6.7.2", |
|
69 | 71 | "typeorm": "^0.2.41", |
70 | 72 | "typeorm-seeding": "^1.6.1", |
71 | 73 | "ua-parser-js": "^1.0.2", |
72 | | - "uuid": "^8.3.2" |
| 74 | + "uuid": "^8.3.2", |
| 75 | + "winston": "^3.6.0", |
| 76 | + "winston-cloudwatch": "^3.1.1" |
73 | 77 | }, |
74 | 78 | "devDependencies": { |
75 | 79 | "@commitlint/cli": "^16.0.2", |
|
0 commit comments