-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 907 Bytes
/
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
{
"name": "@eropple/nestjs-correlation-id",
"version": "1.0.1",
"description": "Middleware for managing X-Correlation-Id headers in NestJS (or any other Express app).",
"main": "dist",
"author": "Ed Ropple",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eropple/nestjs-correlation-id"
},
"private": false,
"scripts": {
"build": "yarn exec -- tsc",
"watch": "yarn build --watch",
"prepare": "yarn build"
},
"peerDependencies": {
"@nestjs/common": ">=6.0.0",
"rxjs": ">=6.4.0"
},
"devDependencies": {
"@nestjs/common": ">=6.0.0",
"@nestjs/schematics": "^6.3.0",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"@types/uuid": "^3.4.4",
"rxjs": ">=6.4.0",
"ts-jest": "^24.0.2",
"typescript": "^3.2.4"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"uuid": "^3.3.2"
}
}