-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.89 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "brexbot",
"version": "0.0.1",
"description": "Bot for the Bananasaurus_Rex Discord server",
"main": "./build/main.js",
"scripts": {
"build": "rimraf ./build && tsc",
"dev": "node --loader ts-node/esm/transpile-only src/main.ts",
"start": "nodemon --exec node --loader ts-node/esm/transpile-only src/main.ts",
"serve": "node build/main.js",
"lint": "eslint -c .eslintrc.cjs src .eslintrc.cjs",
"lint:fix": "eslint -c .eslintrc.cjs src .eslintrc.cjs --fix",
"eloDecay": " node ./build/standalones/eloDecay.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brexbot/DiscordBot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brexbot/DiscordBot/issues"
},
"homepage": "https://github.com/Brexbot/DiscordBot#readme",
"type": "module",
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/node": "^20.14.10",
"@types/node-fetch": "^2.6.11",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"dependencies": {
"@dice-roller/rpg-dice-roller": "^5.5.0",
"@discordx/importer": "^1.3.1",
"@discordx/pagination": "^3.5.4",
"@discordx/utilities": "^7.0.1",
"@prisma/client": "^5.16.2",
"@twurple/api": "^7.1.0",
"@twurple/auth": "^7.1.0",
"cron": "^3.1.7",
"discord-api-types": "^0.37.92",
"discord.js": "^14.15.3",
"discordx": "^11.12.0",
"hsl-rgb": "^1.0.0",
"localisetimemodule": "github:QOAL/localiseTimeModule#20230503",
"prisma": "^5.16.2",
"reflect-metadata": "^0.2.2",
"sharp": "^0.33.4",
"sponge-case": "^2.0.3"
}
}