-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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": "aws-cdk-multi-tenant-api-example",
"version": "0.1.0",
"bin": {
"aws-cdk-multi-tenant-api-example": "bin/aws-cdk-multi-tenant-api-example.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint . --ext .ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"deploy": "cdk synth --quiet && cdk deploy --hotswap-fallback --require-approval never"
},
"devDependencies": {
"@aws-sdk/credential-provider-node": "3.350.0",
"@aws-sdk/signature-v4": "3.347.0",
"@aws-sdk/types": "3.347.0",
"@types/aws-lambda": "^8.10.115",
"@types/aws4": "^1.11.2",
"@types/jest": "^29.4.0",
"@types/node": "18.14.6",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"aws-cdk": "2.78.0",
"aws-sdk": "2.1395.0",
"cross-fetch": "3.1.6",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.5",
"zlib": "1.0.5"
},
"dependencies": {
"@aws-lambda-powertools/metrics": "^1.9.0",
"aws-cdk-lib": "2.78.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}