-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 989 Bytes
/
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
{
"name": "cdk-client",
"version": "1.0.0",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk",
"tail:client": "aws logs tail /aws/lambda/HelloClient --follow",
"tail:authorizer": "aws logs tail /aws/lambda/HelloClientAuthorizer --follow",
"tail:api": "aws logs tail /aws/apigateway/SampleApiLambda --follow",
"tail:sync": "aws logs tail /aws/lambda/loginSyncSample --follow",
"tail": "npm-run-all --parallel tail:*",
"canary": "npm install @hellocoop/cdk-client@canary && cdk deploy --all",
"latest": "npm install @hellocoop/cdk-client@latest && cdk deploy --all"
},
"devDependencies": {
"@aws-sdk/types": "^3.696.0",
"@types/node": "^22.10.1",
"aws-cdk": "^2.171.1",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"dependencies": {
"@hellocoop/cdk-client": "^2.6.0",
"aws-cdk-lib": "^2.171.1",
"constructs": "^10.0.0",
"npm-run-all": "^4.1.5",
"source-map-support": "^0.5.21"
}
}