-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "ecs-github-actions-runner",
"version": "0.1.0",
"license": "MIT",
"bin": {
"ecs-github-actions-runner": "bin/ecs-github-actions-runner.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"eslint": "eslint . --ext .ts",
"test": "jest",
"test:coverage": "jest --coverage",
"cdk": "cdk"
},
"devDependencies": {
"@types/aws-lambda": "8.10.147",
"@types/config": "3.3.4",
"@types/jest": "27.5.2",
"@types/node": "22.13.8",
"@types/source-map-support": "0.5.10",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"aws-cdk": "2.75.0",
"esbuild": "0.25.0",
"eslint": "9.22.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-googleappsscript": "1.0.5",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.11.0",
"jest": "27.5.1",
"ts-jest": "27.1.5",
"ts-node": "10.9.2",
"typescript": "3.9.10"
},
"dependencies": {
"@aws-sdk/client-ecs": "3.699.0",
"@aws-sdk/client-secrets-manager": "3.699.0",
"@aws-sdk/types": "3.696.0",
"@octokit/rest": "21.0.2",
"aws-cdk-lib": "2.75.0",
"config": "3.3.12",
"constructs": "10.4.2",
"source-map-support": "0.5.21"
}
}