forked from nestjs/terminus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.57 KB
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
{
"name": "@nestjs/terminus",
"version": "6.5.6",
"description": "Nest - modern, fast, powerful node.js web framework (@terminus)",
"repository": {
"url": "https://github.com/nestjs/terminus"
},
"license": "MIT",
"author": "Livio Brunner",
"main": "dist/index.js",
"scripts": {
"build": "gulp",
"build:all": "gulp build:all",
"clean": "gulp clean",
"lint": "tslint -c tslint.json -p tsconfig.json",
"precommit": "lint-staged",
"prepublish": "npm run build",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test": "npm run test:ut",
"test:e2e": "jest --config=e2e/jest-e2e.json --detectOpenHandles --forceExit",
"test:ut": "jest --config=jest.json",
"test:ut:cov": "npm run test:ut -- --coverage"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
],
"package.json": [
"sort-package-json ./package.json",
"git add"
]
},
"dependencies": {
"check-disk-space": "2.1.0"
},
"devDependencies": {
"@compodoc/compodoc": "1.1.11",
"@godaddy/terminus": "4.3.1",
"@nestjs/common": "6.11.8",
"@nestjs/core": "6.11.8",
"@nestjs/testing": "6.11.8",
"@types/jest": "25.1.4",
"@types/mongoose": "5.7.6",
"@types/node": "12.12.21",
"fastify": "2.12.1",
"fastify-formbody": "3.1.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-typescript": "5.0.1",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.9",
"mysql": "2.18.1",
"portfinder": "1.0.25",
"prettier": "2.0.2",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.4",
"rxjs-compat": "6.5.4",
"sort-package-json": "1.40.0",
"supertest": "4.0.2",
"ts-jest": "25.2.1",
"ts-node": "8.8.1",
"tslint": "6.1.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.8.3"
},
"peerDependencies": {
"@godaddy/terminus": "^4.2.0",
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"optionalDependencies": {
"@grpc/proto-loader": "0.5.3",
"@nestjs/microservices": "6.11.8",
"@nestjs/mongoose": "6.4.0",
"@nestjs/platform-express": "6.11.8",
"@nestjs/platform-fastify": "6.11.8",
"@nestjs/typeorm": "7.0.0",
"amqp-connection-manager": "3.2.0",
"amqplib": "0.5.5",
"grpc": "1.24.2",
"mongoose": "5.9.4",
"mqtt": "3.0.0",
"nats": "1.4.2",
"redis": "3.0.2",
"typeorm": "0.2.24"
}
}