-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "cdk-app",
"version": "0.10.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"description": "This project contains source code and supporting files for a serverless application that you can deploy with CDK.",
"license": "MIT-0",
"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": "18.0.0",
"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.10.0",
"@aws-lambda-powertools/metrics": "^0.10.0",
"@aws-lambda-powertools/tracer": "^0.10.0",
"@aws-sdk/client-sts": "^3.53.0",
"@middy/core": "^2.5.6",
"@types/aws-lambda": "^8.10.86",
"aws-cdk-lib": "2.27.0",
"aws-sdk": "^2.1088.0",
"constructs": "^10.0.82",
"source-map-support": "^0.5.16"
}
}