-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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": "discord-cbl",
"version": "1.0.1",
"description": "Discord bot for checking Community Ban List history",
"main": "src/index.js",
"bin": {
"discord-cbl": "./cli.js"
},
"scripts": {
"start": "node src/index.js",
"register": "node src/registerCommands.js",
"docker-build-server": "docker build -f ./Dockerfile . -t bot-dev",
"prod-test": "conc \"yarn docker-build-server\"",
"lint": "eslint --fix . && prettier --write \"./**/*.js\""
},
"dependencies": {
"@discordjs/rest": "^1.7.1",
"config": "^3.3.12",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"winston": "^3.14.2",
"pm2": "^5.4.2"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"concurrently": "^9.0.1",
"eslint": "^9.11.0",
"globals": "^15.9.0",
"prettier": "^3.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sceboucher/discord-cbl.git"
},
"author": "Samantha Boucher",
"license": "MIT",
"bugs": {
"url": "https://github.com/sceboucher/discord-cbl/issues"
},
"homepage": "https://github.com/sceboucher/discord-cbl#readme"
}