-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.67 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
62
63
64
{
"name": "judgebot",
"version": "1.0.0",
"description": "discord bot for judges",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"module": "es2022",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"serve": "npm run build && node server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/bra1n/judgebot"
},
"author": "Steffen Baumgart <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/bra1n/judgebot/issues"
},
"dependencies": {
"@discordjs/builders": "^1.2.0",
"@discordjs/collection": "^1.1.0",
"@discordjs/rest": "^1.1.0",
"@discordx/importer": "^1.1.10",
"@types/cheerio": "^0.22.31",
"chalk": "^5.0.1",
"cheerio": "1.0.0-rc.12",
"discord-api-types": "^0.37.5",
"discord.js": "^14.3.0",
"discordx": "^11.1.12",
"flexsearch": "^0.7.21",
"fuse.js": "^6.6.2",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"log4js": "^6.6.1",
"node-fetch": "^3.2.10",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"scryfall-sdk": ">=3.2.1"
},
"devDependencies": {
"@oclif/core": "^1.16.0",
"@types/chai": "^4.3.3",
"@types/flexsearch": "^0.7.3",
"@types/jsdom": "^20.0.0",
"@types/lodash": "^4.14.184",
"@types/lunr": "^2.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.14",
"@types/pdf-parse": "^1.1.1",
"@types/request": "^2.48.8",
"@types/request-promise-native": "^1.0.18",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}