-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 KB
/
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
35
36
37
38
39
40
41
42
43
{
"name": "hotsinfobot",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/tdietrich513/hots-info-bot.git"
},
"main": "src/hots-info-bot.ts",
"scripts": {
"start": "node dist/hots-info-bot.js",
"build": "npm run build-ts && npm run tslint",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"build-ts": "tsc",
"serve": "npm run build-ts && node -r dotenv/config dist/hots-info-bot.js",
"debug": "npm run build-ts && node -r dotenv/config --inspect dist/hots-info-bot.js",
"clean": "ts-node cleanUp.ts"
},
"author": "Tom Dietrich",
"license": "ISC",
"dependencies": {
"discord-akairo": "8.0.0",
"discord.js": "12.2.0",
"dotenv": "^5.0.1",
"got": "^11.5.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"node-schedule": "^1.3.2",
"tabletojson": "^2.0.0",
"uws": "^9.148.0"
},
"devDependencies": {
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.19",
"@types/node-fetch": "1.6.9",
"@types/node-schedule": "1.2.2",
"@types/phantom": "3.2.4",
"shelljs": "0.8.5",
"ts-node": "6.0.2",
"tslint": "6.1.2",
"typescript": "^3.9.6"
}
}