forked from nestjs/terminus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.34 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@nestjs/terminus",
"version": "7.1.1",
"description": "Nest - modern, fast, powerful node.js web framework (@terminus)",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/terminus"
},
"license": "MIT",
"author": "Livio Brunner",
"main": "dist/index.js",
"scripts": {
"build": "gulp",
"build:all": "gulp build:all",
"build:samples": "gulp install:samples && npm run build && gulp build:samples && gulp test:samples && gulp test:e2e:samples",
"clean": "gulp clean",
"lint": "eslint \"lib/**/*.ts\" --fix",
"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 --detectOpenHandles",
"test:ut:cov": "npm run test:ut -- --coverage",
"release": "release-it"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"check-disk-space": "2.1.0",
"deprecate": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "12.0.1",
"@commitlint/config-angular": "12.0.1",
"@compodoc/compodoc": "1.1.11",
"@godaddy/terminus": "4.7.1",
"@grpc/proto-loader": "0.5.6",
"@nestjs/common": "7.6.15",
"@nestjs/core": "7.6.15",
"@nestjs/microservices": "7.6.15",
"@nestjs/mongoose": "7.0.2",
"@nestjs/platform-express": "7.6.15",
"@nestjs/platform-fastify": "7.6.15",
"@nestjs/sequelize": "0.2.0",
"@nestjs/swagger": "4.8.0",
"@nestjs/testing": "7.6.15",
"@nestjs/typeorm": "7.1.5",
"@release-it/conventional-changelog": "2.0.1",
"@types/deprecate": "1.1.0",
"@types/express": "4.17.9",
"@types/jest": "26.0.22",
"@types/mongoose": "5.7.36",
"@types/node": "14.14.37",
"@types/sequelize": "4.28.9",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"amqp-connection-manager": "3.2.2",
"amqplib": "0.7.1",
"cli-color": "2.0.0",
"delete-empty": "3.0.0",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"fastify": "3.13.0",
"fastify-formbody": "5.0.0",
"grpc": "1.24.5",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-debug": "4.0.0",
"gulp-typescript": "5.0.1",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"mongoose": "5.10.9",
"mysql": "2.18.1",
"mysql2": "2.2.5",
"nats": "2.0.1",
"portfinder": "1.0.28",
"prettier": "2.2.1",
"redis": "3.0.2",
"reflect-metadata": "0.1.13",
"release-it": "14.5.0",
"rxjs": "6.6.6",
"rxjs-compat": "6.6.7",
"sequelize": "5.22.4",
"sequelize-typescript": "1.1.0",
"sort-package-json": "1.49.0",
"supertest": "6.1.3",
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"typeorm": "0.2.32",
"typescript": "4.0.3"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
}
}