-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 904 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
31
32
33
34
35
36
{
"name": "aws-s3-proxy-farm",
"version": "1.0.0",
"description": "CDK Constructs for providing access to a private S3 Static Website",
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest"
},
"dependencies": {
"@aws-cdk/aws-autoscaling": "~1.59.0",
"@aws-cdk/aws-ec2": "^1.59.0",
"@aws-cdk/aws-iam": "~1.59.0",
"@aws-cdk/aws-s3": "^1.59.0",
"@aws-cdk/core": "^1.59.0",
"deepmerge": "~4.2.2"
},
"devDependencies": {
"@aws-cdk/assert": "^1.59.0",
"@types/jest": "~24.0.23",
"@types/node": "~10.3.0",
"aws-cdk": "~1.59.0",
"jest": "~26.2.2",
"ts-jest": "~26.1.4",
"ts-node": "~8.10.2",
"typescript": "~3.9.7"
}
}