forked from RossBugginsNHS/github-workflow-dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "github-workflow-dispatcher",
"version": "1.0.0",
"description": "Dispatching-only GitHub App webhook service",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src test vitest.config.ts",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"github-app",
"webhooks",
"dispatcher"
],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.1039.0",
"@aws-sdk/client-eventbridge": "^3.1039.0",
"@aws-sdk/client-secrets-manager": "^3.1039.0",
"@aws-sdk/client-sqs": "^3.1039.0",
"@aws-sdk/lib-dynamodb": "^3.1039.0",
"@fastify/rate-limit": "^10.3.0",
"@octokit/app": "^16.1.2",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks": "^14.2.0",
"dotenv": "^17.4.2",
"fastify": "^5.8.5",
"fastify-raw-body": "^5.0.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"yaml": "^2.8.3",
"zod": "^4.4.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.6.0",
"eslint": "^9.39.4",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.4"
}
}