-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 2.78 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
{
"name": "@last9/openapm",
"description": "OpenAPM for Node.js",
"version": "0.9.2",
"main": "dist/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"vitest": "vitest",
"test": "chmod x ./run-tests.sh && ./run-tests.sh"
},
"license": "Apache-2.0",
"author": "Last9 team <[email protected]>",
"contributors": [
"Tushar Choudhari <[email protected]> (https://github.com/chtushar)",
"Aniket Rao <[email protected]> (https://github.com/anik3tra0)"
],
"peerDependencies": {
"express": "4.x"
},
"keywords": [
"last9",
"metrics",
"apm",
"prometheus"
],
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@nestjs/core": "^10.2.7",
"@nestjs/platform-express": "^10.3.8",
"@nestjs/testing": "^10.3.8",
"@swc/core": "^1.3.95",
"@types/express": "^4.17.17",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^20.4.4",
"@types/react": "^18.2.79",
"@types/response-time": "^2.3.5",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitest/ui": "^0.34.1",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.2",
"mysql2": "^3.6.0",
"next": "^14.2.2",
"node-fetch": "^3.3.1",
"parse-prometheus-text-format": "^1.1.1",
"playwright": "^1.44.0",
"prettier": "2.8.8",
"prisma": "^5.13.0",
"react": "^18.2.0",
"supertest": "^6.3.3",
"tiny-glob": "^0.2.9",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.32.4"
},
"dependencies": {
"@prisma/client": "^5.13.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@types/supertest": "^6.0.2",
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"prom-client": "^15.1.2",
"response-time": "^2.3.2",
"rollup": "^4.14.3",
"undici": "^5.27.2",
"url-value-parser": "^2.2.0"
},
"peerDependenciesMeta": {
"@nestjs/core": {
"optional": true
},
"mysql2": {
"optional": true
},
"express": {
"optional": true
},
"@prisma/client": {
"optional": true
},
"next": {
"optional": true
}
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git https://github.com/last9/nodejs-openapm.git"
},
"bugs": {
"url": "https://github.com/last9/nodejs-openapm/issues"
},
"homepage": "https://github.com/last9/nodejs-openapm#readme",
"private": false
}