|
9 | 9 | "scripts": { |
10 | 10 | "build": "rm -Rf ./dist && tsc", |
11 | 11 | "doc": "rm -Rf ./docs && typedoc ./src && touch ./docs/.nojekyll", |
12 | | - "test:ci": "jest --runInBand", |
13 | | - "test": "jest", |
14 | | - "test:watch": "jest --watch", |
15 | | - "test:cov": "jest --coverage", |
16 | | - "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest", |
| 12 | + "test": "NODE_CONFIG_DIR=src/test/config jest", |
| 13 | + "test:watch": "NODE_CONFIG_DIR=src/test/config jest --watch", |
| 14 | + "test:cov": "NODE_CONFIG_DIR=src/test/config jest --coverage", |
| 15 | + "test:debug": "NODE_CONFIG_DIR=src/test/config node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest", |
17 | 16 | "lint": "eslint ./src/**/*.ts", |
18 | 17 | "format": "prettier \"**/*.ts\" --ignore-path ./.prettierignore --write && git status" |
19 | 18 | }, |
|
24 | 23 | "@nestjs/common": "^6 || ^7" |
25 | 24 | }, |
26 | 25 | "devDependencies": { |
27 | | - "@nestjs/core": "7.0.9", |
28 | | - "@nestjs/common": "7.0.9", |
29 | | - "@nestjs/testing": "7.0.9", |
30 | | - "@types/jest": "25.2.1", |
31 | | - "@typescript-eslint/eslint-plugin": "2.31.0", |
32 | | - "@typescript-eslint/parser": "2.31.0", |
| 26 | + "@nestjs/common": "7.1.3", |
| 27 | + "@nestjs/core": "7.1.3", |
| 28 | + "@nestjs/platform-express": "7.1.3", |
| 29 | + "@nestjs/testing": "7.1.3", |
| 30 | + "@types/config": "0.0.36", |
| 31 | + "@types/jest": "25.2.3", |
| 32 | + "codecov": "3.7.0", |
| 33 | + "@typescript-eslint/eslint-plugin": "3.1.0", |
| 34 | + "@typescript-eslint/parser": "3.1.0", |
33 | 35 | "eslint": "6.8.0", |
| 36 | + "eslint-config-prettier": "6.11.0", |
| 37 | + "eslint-config-standard-with-typescript": "18.0.2", |
34 | 38 | "eslint-plugin-import": "2.20.2", |
| 39 | + "eslint-plugin-node": "11.1.0", |
35 | 40 | "eslint-plugin-prefer-arrow": "1.2.1", |
36 | | - "eslint-config-prettier": "6.11.0", |
| 41 | + "eslint-plugin-promise": "4.2.1", |
| 42 | + "eslint-plugin-standard": "4.0.1", |
37 | 43 | "prettier": "2.0.5", |
38 | | - "codecov": "3.6.5", |
39 | | - "jest": "25.5.4", |
40 | 44 | "reflect-metadata": "0.1.13", |
41 | 45 | "rxjs": "6.5.5", |
42 | | - "ts-jest": "25.4.0", |
43 | | - "ts-node": "8.10.1", |
| 46 | + "jest": "26.0.1", |
| 47 | + "ts-jest": "26.1.0", |
| 48 | + "ts-node": "8.10.2", |
44 | 49 | "tsconfig-paths": "3.9.0", |
45 | | - "typedoc": "0.17.6", |
46 | | - "typescript": "3.8.3" |
| 50 | + "typedoc": "0.17.7", |
| 51 | + "typescript": "3.9.3" |
47 | 52 | }, |
48 | 53 | "jest": { |
49 | 54 | "moduleFileExtensions": [ |
|
0 commit comments