forked from render-examples/webhook-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 720 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 720 Bytes
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
{
"name": "webhook-github-action",
"version": "1.0.0",
"description": "Render Webhook Receiver Example",
"main": "app.ts",
"repository": "https://github.com/render-examples/webhook-github-action",
"author": "Render Developers",
"license": "MIT",
"private": false,
"scripts": {
"build": "pnpm exec tsc",
"start": "node dist/app.js",
"dev": "tsnd --respawn app.ts",
"typecheck": "tsc --noEmit --pretty"
},
"keywords": [],
"dependencies": {
"@octokit/core": "^6.1.4",
"express": "^5.0.1",
"standardwebhooks": "^1.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.13.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
}
}