-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.7 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
{
"name": "build-a-supergraph-subgraph-a",
"version": "1.0.0",
"description": "Subgraph-A for the build-a-supergraph workshop: https://github.com/apollosolutions/build-a-supergraph",
"main": "/dist/index.js",
"homepage": "https://github.com/apollosolutions/build-a-supergraph-subgraph-a#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/apollosolutions/build-a-supergraph-subgraph-a.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollosolutions/build-a-supergraph-subgraph-a/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -b --pretty --verbose",
"start": "node ./dist/index.js",
"start-otel": "node --require \"./dist/tracing.js\" ./dist/index.js",
"watch": "concurrently npm:watch-*",
"watch-ts": "tsc -w",
"watch-node": "nodemon ./dist/index.js",
"gen-chart": "npx hygen change-subgraph with-prompt"
},
"dependencies": {
"@apollo/subgraph": "^2.0.5",
"@opentelemetry/api": "1.0",
"@opentelemetry/core": "1.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.31.0",
"@opentelemetry/instrumentation": "^0.27.0",
"@opentelemetry/instrumentation-express": "^0.28.0",
"@opentelemetry/instrumentation-graphql": "^0.27.4",
"@opentelemetry/instrumentation-http": "^0.27.0",
"@opentelemetry/resources": "1.0",
"@opentelemetry/sdk-node": "^0.31.0",
"@opentelemetry/sdk-trace-base": "1.0",
"@opentelemetry/sdk-trace-node": "1.0",
"apollo-server": "^3.10.0",
"env-var": "^7.1.1",
"graphql": "^16.5.0"
},
"devDependencies": {
"concurrently": "^7.3.0",
"nodemon": "^2.0.19",
"typescript": "^4.7.4"
}
}