-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "scape-bot",
"version": "0.2.220",
"description": "A Discord bot for tracking experience gains and skilling tasks.",
"main": "build/bot.js",
"author": "Evan Williams",
"repository": "https://github.com/evanw555/scape-bot.git",
"engines": {
"node": ">=16.9.0"
},
"scripts": {
"build": "tsc --build",
"prestart": "npm run build",
"start": "node build/bot.js",
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"deploy-commands": "node bin/deploy-commands.js"
},
"dependencies": {
"axios": "^1.1.3",
"chai": "^4.3.6",
"discord.js": "14.10.2",
"evanw555.js": "evanw555/evanw555.js",
"osrs-json-hiscores": "^2.20.0",
"pg": "^8.8.0",
"pg-format": "^1.0.4"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.0",
"@types/pg": "^8.6.5",
"@types/pg-format": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}