-
Notifications
You must be signed in to change notification settings - Fork 655
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "@aws-github-runner/webhook",
"version": "1.0.0",
"main": "lambda.ts",
"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": "yarn eslint src",
"watch": "ts-node-dev --respawn --exit-child src/local.ts",
"build": "ncc build src/lambda.ts -o dist",
"dist": "yarn build && cd dist && zip ../webhook.zip index.js",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"all": "yarn build && yarn format && yarn lint && yarn test"
},
"devDependencies": {
"@aws-sdk/client-eventbridge": "^3.703.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/aws-lambda": "^8.10.145",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.16.0",
"@vercel/ncc": "0.38.3",
"body-parser": "^1.20.3",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "5.2.1",
"express": "^4.21.1",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"nock": "^13.5.4",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@aws-github-runner/aws-powertools-util": "*",
"@aws-github-runner/aws-ssm-util": "*",
"@aws-sdk/client-sqs": "^3.699.0",
"@middy/core": "^4.7.0",
"@octokit/rest": "20.1.1",
"@octokit/types": "^13.6.1",
"@octokit/webhooks": "^12.3.1",
"aws-lambda": "^1.0.7"
},
"nx": {
"includedScripts": [
"build",
"dist",
"format",
"format-check",
"lint",
"start",
"watch",
"all"
]
}
}