forked from GoogleCloudPlatform/microservices-demo
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 749 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 749 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
{
"name": "paymentservice",
"version": "0.0.1",
"description": "Payment Microservice demo",
"repository": "https://github.com/GoogleCloudPlatform/microservices-demo",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "semistandard *.js"
},
"author": "Jonathan Lui",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.5.7",
"@grpc/proto-loader": "^0.6.9",
"@opentelemetry/auto-instrumentations-node": "^0.27.3",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.27.0",
"@opentelemetry/sdk-node": "^0.27.0",
"pino": "^7.8.0",
"simple-card-validator": "^1.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"semistandard": "^16.0.1"
}
}