-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.73 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
{
"name": "nestjs-boilerplate",
"private": true,
"description": "",
"author": "Dmitry Kologrivko",
"license": "MIT",
"scripts": {
"postinstall": "npm run bootstrap && npm run build",
"build": "lerna run build",
"bootstrap": "lerna bootstrap --hoist",
"version": "lerna version --no-git-tag-version --no-push",
"postversion": "./node_modules/.bin/ts-node post-version.ts",
"publish": "npm run build && lerna publish from-package",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest --config jest.json",
"test:watch": "jest --config jest.json --watch",
"test:cov": "jest --config jest.json --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --config jest.json --runInBand",
"test:e2e": "jest --config jest-e2e.json --runInBand"
},
"devDependencies": {
"@nestjs/common": "^9.2.1",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.2.1",
"@nestjs/jwt": "^10.0.1",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.2.1",
"@nestjs/testing": "^9.2.1",
"@nestjs/typeorm": "^9.0.1",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.6",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"class-transformer": "~0.5.1",
"class-validator": "~0.14.0",
"glob": "^8.1.0",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"lerna": "^6.4.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typeorm": "^0.3.11",
"typescript": "~4.9.4"
}
}