-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
package.json
File metadata and controls
54 lines (54 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
{
"name": "developer_webhook_bot",
"description": "Telegram Bot for forwarding webhooks",
"version": "1.0.0",
"private": true,
"author": {
"name": "Samuel Gratzl",
"email": "sam@sgratzl.com",
"url": "https://www.sgratzl.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sgratzl/developer_webhook_bot.git"
},
"bugs": {
"url": "https://github.com/sgratzl/developer_webhook_bot/issues"
},
"homepage": "https://github.com/sgratzl/developer_webhook_bot#readme",
"scripts": {
"compile": "tsc",
"watch": "tsc --watch",
"postbuild": "yarn run test",
"build": "yarn run compile",
"test": "eslint \"api/**/*.ts\"",
"release": "release-it --disable-metrics --npm.skipChecks",
"release:pre": "release-it --disable-metrics --npm.skipChecks --preRelease=alpha --npm.tag=next",
"start": "node -r dotenv/config ./build/bot",
"webhook": "node -r dotenv/config ./build/bot https://developer-webhook-bot.vercel.app/api/bot"
},
"dependencies": {
"@octokit/webhooks": "^9.26.3",
"@octokit/webhooks-types": "^5.5.1",
"@types/node": "^17.0.23",
"node-gitlab-webhook": "^1.0.6",
"telegraf": "^4.7.0"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vercel/build-utils": "^2.15.0",
"@vercel/frameworks": "^0.7.0",
"@vercel/node": "^1.14.0",
"@vercel/routing-utils": "^1.13.0",
"@yarnpkg/pnpify": "^3.1.1",
"@yarnpkg/sdks": "^2.6.0",
"dotenv": "^16.0.0",
"eslint": "^8.12.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"vercel": "^24.0.1"
}
}