forked from aws-samples/aws-dev-hour-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "awsdevhour",
"version": "0.1.1",
"bin": {
"awsdevhour": "bin/awsdevhour.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"outputs": "aws cloudformation describe-stacks --stack-name dev-AwsdevhourBackendPipelineStage | jq '.Stacks | .[] | .Outputs | reduce .[] as $i ({}; .[$i.OutputKey] = $i.OutputValue)'"
},
"devDependencies": {
"@aws-cdk/assert": "^1.91.0",
"@types/jest": "^26.0.20",
"@types/node": "14.14.31",
"aws-cdk": "^1.91.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "~4.2.2"
},
"dependencies": {
"@aws-cdk/aws-apigateway": "^1.91.0",
"@aws-cdk/aws-codepipeline": "^1.92.0",
"@aws-cdk/aws-codepipeline-actions": "^1.92.0",
"@aws-cdk/aws-cognito": "^1.91.0",
"@aws-cdk/aws-dynamodb": "^1.91.0",
"@aws-cdk/aws-iam": "^1.91.0",
"@aws-cdk/aws-lambda": "^1.91.0",
"@aws-cdk/aws-lambda-event-sources": "^1.91.0",
"@aws-cdk/aws-s3": "^1.91.0",
"@aws-cdk/aws-s3-deployment": "^1.91.0",
"@aws-cdk/aws-s3-notifications": "^1.91.0",
"@aws-cdk/aws-sqs": "^1.91.0",
"@aws-cdk/core": "^1.91.0",
"@aws-cdk/pipelines": "^1.92.0",
"source-map-support": "^0.5.19"
}
}