-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.08 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
{
"name": "@evanion/nestjs-correlation-id",
"version": "1.0.4",
"description": "Transparently forward or add correlation id to all requests",
"author": "Mikael Pettersson <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "dist/index.js",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"start:dev": "tsc -w",
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"release": "release-it"
},
"keywords": [
"nestjs",
"nestjs-middleware",
"middleware",
"correlation",
"correlation-id",
"request",
"request-id"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/evanion/nestjs-correlation-id"
},
"bugs": "https://github.com/evanion/nestjs-correlation-id/issues",
"peerDependencies": {
"@nestjs/axios": "^0.1.0 || ^1.0.0 || ^2.0.0",
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"@nestjs/axios": "^2.0.0",
"@nestjs/common": "^9.4.1",
"@nestjs/core": "^9.4.1",
"@nestjs/platform-express": "^9.4.1",
"@nestjs/testing": "9.4.1",
"@types/express": "4.17.17",
"@types/jest": "29.5.1",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"axios": "^1.4.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "29.5.0",
"prettier": "^2.8.8",
"reflect-metadata": "^0.1.13",
"release-it": "^15.10.3",
"rxjs": "^7.8.1",
"supertest": "6.3.3",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tsc-watch": "6.0.4",
"tsconfig-paths": "4.2.0",
"typescript": "5.0.4",
"uuid": "^9.0.0"
}
}