-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 742 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 742 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
28
{
"name": "tracing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"api": "./node_modules/.bin/ts-node ./packages/api/index.ts",
"devices": "./node_modules/.bin/ts-node ./packages/devices/index.ts",
"users": "./node_modules/.bin/ts-node ./packages/users/index.ts",
"start": "npm run api & npm run devices & npm run users"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jaeger-client": "^3.15.3",
"@types/node": "^13.7.0",
"@types/uuid": "^3.4.7",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"jaeger-client": "^3.17.2",
"nats": "^1.4.0",
"opentracing": "^0.14.4",
"uuid": "^3.4.0"
}
}