-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
99 lines (99 loc) · 2.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "historicalnft-api",
"version": "0.0.1",
"description": "",
"author": "pixelmap",
"license": "UNLICENSED",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node dist/main",
"start:dev": "NODE_ENV='' nest start --watch",
"serve": "NODE_ENV='test' nest start --watch",
"start:debug": "NODE_ENV='' nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "tslint -p tsconfig.json -c tslint.json",
"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",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/ormconfig.ts",
"typeorm:migrate": "npm run typeorm migration:generate -- -n",
"typeorm:run": "npm run typeorm migration:run"
},
"dependencies": {
"@nestjs/cli": "^8.2.6",
"@nestjs/common": "^8.4.5",
"@nestjs/config": "^2.0.1",
"@nestjs/core": "^8.4.5",
"@nestjs/platform-express": "^8.4.5",
"@nestjs/serve-static": "^2.2.2",
"@nestjs/terminus": "^8.0.6",
"@types/json-schema": "7.0.7",
"cache-manager": "^3.6.3",
"dotenv": "8.2.0",
"joi": "17.4.0",
"js-yaml": "^4.1.0",
"json-schema": "^0.4.0",
"rapidoc": "^9.3.2",
"rimraf": "3.0.2",
"ts-loader": "8.1.0",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0",
"typeorm": "0.2.32",
"typescript": "4.3.5",
"yamljs": "0.3.0"
},
"devDependencies": {
"@nestjs/schematics": "^8.0.11",
"@nestjs/testing": "^8.4.5",
"@types/cache-manager": "^3.4.3",
"@types/express": "4.17.11",
"@types/jest": "26.0.22",
"@types/node": "14.14.41",
"@types/supertest": "2.0.11",
"jest": "26.6.3",
"jest-sonar-reporter": "2.0.0",
"nock": "13.0.11",
"prettier": "2.2.1",
"supertest": "6.1.3",
"ts-jest": "26.5.5",
"tslint": "6.1.3"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"collectCoverage": true,
"preset": "ts-jest",
"collectCoverageFrom": [
"**/*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testResultsProcessor": "jest-sonar-reporter",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/coverage/",
"/cache/",
"/dist/",
"/test/",
"/src/main.ts"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}