-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.58 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": "managing-temp",
"version": "1.0.0",
"description": "managing-temp for the build-a-supergraph workshop: https://github.com/apollosolutions/build-a-supergraph",
"main": "/dist/index.js",
"homepage": "https://github.com/elritz/managing-temp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/elritz/managing-temp.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/elritz/managing-temp/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -b --pretty --verbose",
"start": "node ./dist/src/index.js",
"start-otel": "node --require \" ./dist/index.js",
"watch": "concurrently npm:watch-*",
"watch-ts": "tsc -w",
"watch-node": "nodemon ./dist/src/index.js"
},
"dependencies": {
"@apollo/server": "^4.7.0",
"@apollo/subgraph": "2.4.0",
"@opentelemetry/api": "1.4.1",
"@opentelemetry/core": "1.12.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.38.0",
"@opentelemetry/instrumentation": "^0.38.0",
"@opentelemetry/instrumentation-express": "^0.32.2",
"@opentelemetry/instrumentation-graphql": "^0.34.1",
"@opentelemetry/instrumentation-http": "^0.38.0",
"@opentelemetry/resources": "1.12.0",
"@opentelemetry/sdk-node": "^0.38.0",
"@opentelemetry/sdk-trace-base": "1.12.0",
"@opentelemetry/sdk-trace-node": "1.12.0",
"env-var": "^7.3.1",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"concurrently": "8.0.1",
"nodemon": "^2.0.19",
"typescript": "5.0.4"
}
}