-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "zipkin-js-example",
"version": "0.0.1",
"description": "Example project that shows how to use zipkin with javascript",
"author": "https://gitter.im/openzipkin/zipkin",
"license": "Apache-2.0",
"repository": "https://github.com/openzipkin/zipkin-js",
"scripts": {
"lint": "eslint .",
"start": "node servers.js",
"browserify": "browserify browser.js -o bundle.js"
},
"dependencies": {
"@types/express": "^4.0.9",
"axios": "^0.19.0",
"browser-process-hrtime": "^1.0",
"express": "^4.0",
"node-fetch": "^2.6.0",
"npm": "^6.9",
"zipkin": "^0.19.1",
"zipkin-context-cls": "^0.19.0",
"zipkin-instrumentation-axiosjs": "^0.19.1",
"zipkin-instrumentation-express": "^0.19.1",
"zipkin-instrumentation-fetch": "^0.19.1",
"zipkin-transport-http": "^0.19.1"
},
"devDependencies": {
"browserify": "^16.2",
"eslint": "^5.14",
"eslint-config-airbnb": "^17.1",
"eslint-plugin-import": "^2.16",
"eslint-plugin-jest": "^22.3",
"eslint-plugin-jsx-a11y": "^6.2",
"eslint-plugin-react": "^7.12"
}
}