-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 936 Bytes
/
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
{
"name": "discord-api-status-webhook",
"version": "1.0.0",
"description": "Discord Webhook to display the discord api's status.",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpile-only index.ts",
"build": "tsc",
"start": "tsc && node ./index.js"
},
"author": "Laennart",
"license": "ISC",
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/luxon": "^2.0.3",
"@types/node": "^14.14.10",
"eslint": "^7.32.0",
"ts-node-dev": "^1.0.0-pre.49",
"tslib": "^2.0.3",
"tslint-config-fire": "^1.0.1",
"typescript": "^4.1.2"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@types/common-tags": "^1.8.0",
"common-tags": "^1.8.0",
"discord-api-types": "^0.22.0",
"discord.js": "^13.1.0",
"glob": "^7.1.6",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1"
}
}