-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 KB
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
{
"name": "otel-lambda-example",
"version": "0.1.0",
"bin": {
"otel-lambda-example": "bin/otel-lambda-example.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "22.7.9",
"@types/node-fetch": "^2.6.12",
"aws-cdk": "2.1004.0",
"esbuild": "^0.25.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
},
"dependencies": {
"@aws-lambda-powertools/batch": "^2.16.0",
"@aws-lambda-powertools/logger": "^2.16.0",
"@aws-sdk/client-dynamodb": "^3.758.0",
"@aws-sdk/client-sqs": "^3.758.0",
"@aws-sdk/lib-dynamodb": "^3.758.0",
"@mrgrain/cdk-esbuild": "^5.3.9",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/instrumentation-aws-lambda": "^0.50.3",
"@opentelemetry/instrumentation-aws-sdk": "^0.49.1",
"@opentelemetry/semantic-conventions": "^1.30.0",
"@types/aws-lambda": "^8.10.147",
"aws-cdk-lib": "2.184.1",
"constructs": "^10.0.0",
"node-fetch": "^2.7.0"
}
}