-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "aws-ecs",
"version": "1.0.0",
"description": "Aws Ecs service with blue green deployment pipeline",
"author": "Eduard Jacobs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:edo92/Aws-Ecs-BlueGreen-Deployment"
},
"keywords": [
"ecs",
"aws cdk",
"blue green"
],
"bin": {
"cdk": "bin/cdk.ts"
},
"scripts": {
"build": "alias cdk='npx aws-cdk' && tsc",
"test": "jest",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"deploy": "cdk synth --quiet"
},
"dependencies": {
"@aws-cdk/aws-cloudwatch": "^1.135.0",
"@aws-cdk/aws-codebuild": "^1.135.0",
"@aws-cdk/aws-codedeploy": "^1.135.0",
"@aws-cdk/aws-codepipeline": "^1.135.0",
"@aws-cdk/aws-codepipeline-actions": "^1.135.0",
"@aws-cdk/aws-codestar": "^1.136.0",
"@aws-cdk/aws-codestarconnections": "^1.136.0",
"@aws-cdk/aws-ec2": "^1.135.0",
"@aws-cdk/aws-ecr": "^1.135.0",
"@aws-cdk/aws-ecs": "^1.136.0",
"@aws-cdk/aws-elasticloadbalancingv2": "^1.135.0",
"@aws-cdk/aws-iam": "^1.135.0",
"@aws-cdk/aws-logs": "^1.135.0",
"@aws-cdk/aws-s3": "^1.136.0",
"@aws-cdk/aws-secretsmanager": "^1.136.0",
"@aws-cdk/core": "^1.135.0",
"@aws-cdk/custom-resources": "^1.135.0",
"@aws-cdk/pipelines": "^1.136.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"ts-jest": "^27.1.2",
"@types/node": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"aws-cdk": "^2.3.0",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.3",
"typescript-transform-paths": "^3.3.1"
}
}