-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "cdk-app",
"version": "0.8.1",
"bin": {
"cdk-app": "bin/cdk-app.js"
},
"scripts": {
"build": "tsc --skipLibCheck",
"watch": "tsc -w",
"test": "npm run test:unit",
"package": "echo 'Not applicable'",
"test:unit": "npm run build && jest",
"test:e2e": "echo 'To be implemented ...'",
"version": "npm install @aws-lambda-powertools/[email protected] @aws-lambda-powertools/[email protected] @aws-lambda-powertools/[email protected] && git add package.json",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "17.0.26",
"aws-cdk": "^2.0.0",
"esbuild": "^0.14.23",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^0.7.0",
"@aws-lambda-powertools/metrics": "^0.7.0",
"@aws-lambda-powertools/tracer": "^0.7.0",
"@aws-sdk/client-sts": "^3.53.0",
"@middy/core": "^2.5.6",
"@types/aws-lambda": "^8.10.86",
"aws-cdk-lib": "2.20.0",
"aws-sdk": "^2.1088.0",
"constructs": "^10.0.82",
"source-map-support": "^0.5.16"
}
}