forked from MetinSeylan/Nestjs-OpenTelemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.87 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
{
"name": "@easyv/nestjs-opentelemetry",
"version": "1.1.5",
"description": "deeply integrated OpenTelemetry module for Nestjs",
"author": "[email protected]",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/Yuuki-Sakura/nestjs-open-telemetry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Yuuki-Sakura/nestjs-open-telemetry.git"
},
"bugs": {
"url": "https://github.com/Yuuki-Sakura/nestjs-open-telemetry/issues"
},
"keywords": [
"nestjs",
"opentelemetry",
"tracing",
"observability",
"metric",
"prometheus",
"zipkin",
"jaeger",
"grafana",
"opencensus"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "mkdir -p .git/hooks && echo \"echo '{\\\"*.*\\\":[\\\"eslint --fix\\\"]}' | npx lint-staged -c -\" > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"lint": "eslint --fix",
"build": "rimraf dist && nest build",
"publish:npm": "pnpm build && pnpm publish --access public",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"@nestjs/schedule": "^2.0.0 || ^3.0.0 || ^4.0.0",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/auto-instrumentations-node": "^0.43.0",
"@opentelemetry/context-async-hooks": "^1.22.0",
"@opentelemetry/core": "^1.22.0",
"@opentelemetry/resource-detector-container": "^0.3.7",
"@opentelemetry/resources": "^1.22.0",
"@opentelemetry/sdk-node": "^0.49.1",
"@opentelemetry/sdk-trace-base": "^1.22.0",
"@opentelemetry/semantic-conventions": "^1.22.0",
"fast-glob": "^3.3.1",
"reflect-metadata": "^0.1.13 || ^0.2.0",
"typeorm": "^0.3.0"
},
"peerDependenciesMeta": {
"@nestjs/schedule": {
"optional": true
},
"fast-glob": {
"optional": true
},
"typeorm": {
"optional": true
}
},
"devDependencies": {
"@antfu/eslint-config": "2.8.1",
"@nestjs/cli": "^10.3.2",
"@nestjs/common": "^10.3.3",
"@nestjs/core": "^10.3.3",
"@nestjs/platform-express": "^10.3.3",
"@nestjs/schedule": "^4.0.1",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.26",
"@types/supertest": "^6.0.2",
"eslint": "8.57.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"reflect-metadata": "^0.2.1",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"sqlite3": "^5.1.7",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typeorm": "^0.3.20",
"typescript": "^5.4.2",
"wait-for-expect": "^3.0.2"
}
}