-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.06 KB
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
{
"name": "node-app-observability",
"version": "1.0.0",
"description": "Node app with Express Actuator and tests",
"main": "src/app.js",
"author": {
"name": "Vishal Mishra"
},
"scripts": {
"start": "node src/app.js",
"test":"mocha --reporter mochawesome --reporter-options reportDir=reports,reportFilename=index --timeout 5000 --config mocha.config.js",
"test-mon": "mocha --config mocha.config.js"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-jaeger": "^1.30.0",
"@opentelemetry/instrumentation": "^0.57.0",
"@opentelemetry/instrumentation-express": "^0.47.0",
"@opentelemetry/instrumentation-http": "^0.57.0",
"@opentelemetry/sdk-node": "^0.57.0",
"express": "^4.21.2",
"express-actuator": "^1.8.4",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"chai": "^5.1.2",
"chai-http": "^4.3.0",
"jest": "^29.7.0",
"mocha": "^11.0.1",
"mochawesome": "^7.1.3",
"supertest": "^6.3.4"
}
}