-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 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
42
43
44
45
46
47
{
"name": "fargate_service_discovery",
"version": "0.1.0",
"repository": {
"url": "https://github.com/Mic-U/fargate_service_discovery_tamplate"
},
"author": {
"name": "Mic-U"
},
"bin": {
"fargate_service_discovery": "bin/fargate_service_discovery.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint ./lib/**/*.ts"
},
"devDependencies": {
"@aws-cdk/assert": "^1.30.0",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"aws-cdk": "^1.30.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.7.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@aws-cdk/aws-ec2": "^1.30.0",
"@aws-cdk/aws-ecs": "^1.30.0",
"@aws-cdk/aws-ecs-patterns": "^1.30.0",
"@aws-cdk/aws-iam": "^1.30.0",
"@aws-cdk/aws-servicediscovery": "^1.30.0",
"@aws-cdk/core": "^1.30.0",
"source-map-support": "^0.5.16"
}
}