-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.04 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "benchmark",
"version": "0.0.1",
"private": true,
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/nodesource/benchmark.git"
},
"bugs": {
"url": "https://github.com/nodesource/benchmark/issues"
},
"bin": {
"benchmark": "./bin/benchmark.js",
"server": "./bin/server.js"
},
"scripts": {
"benchmark": "$npm_package_bin_benchmark",
"prod:build": "NODE_ENV='production' node build-web.js",
"dev:build": "NODE_ENV='development' nodemon --watch 'web/' --exec node build-web.js",
"dev:server": "NODE_ENV='development' nodemon --ignore 'web/' --ignore 'build/' ./bin/server.js",
"prod:server": "NODE_ENV='production' node ./bin/server.js",
"dev": "npm-run-all --parallel dev:*",
"prod": "npm-run-all --parallel prod:*",
"clear": "rm -r reports/public/data/*",
"display": "$npm_package_bin_server",
"ignore-local": "git update-index --assume-unchanged agents/configs/appdynamics.js agents/configs/dynatrace.js agents/configs/newrelic.js agents/configs/nsolid.js agents/configs/nsolid_tracing.js agents/configs/signalfx.js",
"track-local": "git update-index --no-assume-unchanged agents/configs/appdynamics.js agents/configs/dynatrace.js agents/configs/newrelic.js agents/configs/nsolid.js agents/configs/nsolid_tracing.js agents/configs/signalfx.js",
"lint": "standard"
},
"homepage": "https://github.com/nodesource/benchmark",
"keywords": [],
"author": "NodeSource",
"license": "MIT",
"dependencies": {
"@dynatrace/oneagent": "^1.243.166-1.0.0",
"@instana/autoprofile": "^2.6.0",
"@instana/collector": "^2.6.0",
"@newrelic/native-metrics": "^8.0.0",
"@opentelemetry/api": "^1.1.0",
"@opentelemetry/exporter-jaeger": "^1.5.0",
"@opentelemetry/instrumentation": "^0.31.0",
"@opentelemetry/instrumentation-dns": "^0.29.0",
"@opentelemetry/instrumentation-http": "^0.31.0",
"@opentelemetry/sdk-trace-base": "^1.5.0",
"@opentelemetry/sdk-trace-node": "^1.5.0",
"apollo-server": "^3.5.0",
"appdynamics": "^22.7.0",
"autocannon": "^7.9.0",
"colorette": "^1.2.2",
"cors": "^2.8.5",
"dd-trace": "^2.12.0",
"debug": "^4.3.2",
"express": "~4.17.1",
"express-graphql": "^0.12.0",
"fastify": "^3.19.1",
"graphql": "^16.2.0",
"hapi": "^18.1.0",
"inquirer": "^8.1.0",
"koa": "~2.12.0",
"loadtest": "^5.1.2",
"mercurius": "^9.0.0",
"newrelic": "^8.17.0",
"open": "^8.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semver": "^7.3.5",
"signalfx-collect": "^2.0.0-beta4",
"signalfx-tracing": "^0.13.0",
"split2": "^3.2.2",
"tar": "^6.1.0",
"undici": "^5.8.0"
},
"devDependencies": {
"browser-sync": "^2.27.5",
"esbuild": "^0.12.25",
"esbuild-sass-plugin": "^1.5.2",
"html-minifier-terser": "^6.0.2",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"standard": "^16.0.3"
},
"standard": {
"globals": [
"d3",
"fetch"
],
"ignore": [
"reports/public/*"
]
}
}