-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 837 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 837 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
29
30
{
"name": "caching",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node index.js",
"test": "find src -name '*.test.js' -exec node --test {} +",
"test:watch": "node --test --watch src/request.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@microlabs/otel-cf-workers": "^1.0.0-rc.43",
"@opentelemetry/api": "^1.6.0",
"@opentelemetry/instrumentation": "^0.54.0",
"@opentelemetry/instrumentation-http": "^0.54.0",
"@opentelemetry/propagator-b3": "^2.0.1",
"@opentelemetry/sdk-trace-node": "^1.27.0",
"express": "^4.21.1",
"graphql": "^16.9.0",
"joi": "^17.13.3",
"redis": "^4.7.0",
"serverless-http": "^3.2.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"eslint": "^9.30.1"
}
}