-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 846 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 846 Bytes
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
{
"name": "hello-logging-fun",
"version": "1.0.0",
"description": "Simple Hello World example written in NodeJS which uses Winston and the GCP Winston plugin to do some logging into GCP",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"npm-check-updates": "^16.10.12"
},
"dependencies": {
"@google-cloud/error-reporting": "^3.0.5",
"@google-cloud/logging-winston": "^5.3.0",
"@google-cloud/opentelemetry-cloud-trace-exporter": "^2.0.0",
"@google-cloud/profiler": "^5.0.4",
"@google-cloud/trace-agent": "^7.1.2",
"@opentelemetry/api": "^1.4.1",
"@opentelemetry/sdk-trace-base": "^1.14.0",
"@opentelemetry/sdk-trace-node": "^1.14.0",
"express": "^4.18.2",
"uuid": "^9.0.0",
"winston": "^3.9.0"
}
}