-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 771 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 771 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
29
30
{
"name": "BlazeBot",
"version": "1.0.0",
"description": "Discord bot for UAB Blazerwatch",
"main": "build/index.js",
"repository": "https://github.com/OzairP/BlazeBot/",
"author": "Ozair Patel <ozairpatel2@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"prettier": "prettier \"src/**/*.ts\" --write"
},
"dependencies": {
"@types/dotenv": "^4.0.3",
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.2",
"discord.js": "^11.4.2",
"dotenv": "^6.1.0",
"overwatch-api": "^0.7.0",
"p-min-delay": "^2.0.0",
"tslib": "^1.9.3",
"typescript": "^3.1.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.9",
"prettier": "^1.16.1"
}
}