-
Notifications
You must be signed in to change notification settings - Fork 721
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 KB
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
{
"name": "@aws-github-runner/control-plane",
"version": "1.0.0",
"main": "lambda.ts",
"type": "module",
"license": "MIT",
"scripts": {
"start": "ts-node-dev src/local.ts",
"test": "NODE_ENV=test nx test",
"test:watch": "NODE_ENV=test nx test --watch",
"lint": "eslint src",
"watch": "ts-node-dev --respawn --exit-child --files src/local-down.ts",
"build": "ncc build src/lambda.ts -o dist",
"dist": "yarn build && cp package.json dist/ && cd dist && zip ../runners.zip *",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"all": "yarn build && yarn format && yarn lint && yarn test"
},
"devDependencies": {
"@aws-sdk/types": "^3.973.6",
"@octokit/types": "^16.0.0",
"@types/aws-lambda": "^8.10.159",
"@types/node": "^22.19.3",
"@vercel/ncc": "^0.38.4",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"moment-timezone": "^0.6.0",
"nock": "^14.0.10",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@aws-github-runner/aws-powertools-util": "*",
"@aws-github-runner/aws-ssm-util": "*",
"@aws-lambda-powertools/parameters": "^2.31.0",
"@aws-sdk/client-ec2": "^3.1009.0",
"@aws-sdk/client-sqs": "^3.1009.0",
"@middy/core": "^6.4.5",
"@octokit/auth-app": "8.2.0",
"@octokit/core": "7.0.6",
"@octokit/plugin-retry": "8.1.0",
"@octokit/plugin-throttling": "11.0.3",
"@octokit/rest": "22.0.1",
"cron-parser": "^5.4.0"
},
"nx": {
"includedScripts": [
"build",
"dist",
"format",
"format-check",
"lint",
"start",
"watch",
"all"
]
}
}