-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathpackage.json
48 lines (48 loc) · 1.57 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": "cdk-app",
"version": "1.2.1",
"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",
"lint": "eslint --ext .ts --no-error-on-unmatched-pattern src tests",
"lint-fix": "eslint --fix --ext .ts --fix --no-error-on-unmatched-pattern src tests",
"package": "echo 'Not applicable'",
"package-bundle": "echo 'Not applicable'",
"test:unit": "npm run build && jest",
"test:e2e": "echo 'To be implemented ...'",
"version": "npm install @aws-lambda-powertools/logger@latest @aws-lambda-powertools/tracer@latest @aws-lambda-powertools/metrics@latest && 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": "^1.2.0",
"@aws-lambda-powertools/metrics": "^1.2.0",
"@aws-lambda-powertools/tracer": "^1.2.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"
}
}