-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "discord-bot-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for creating interaction-based Discord bots",
"main": "index.js",
"bin": {
"discord-bot": "bin/index.js"
},
"scripts": {
"start": "node index",
"dev": "nodemon index",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm link"
},
"engines": {
"node": ">=16.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stack-Five/discord-bot-boilerplate.git"
},
"keywords": [
"Discord",
"Bot",
"Boilerplate",
"NodeJS",
"JavaScript"
],
"author": "Stack Five",
"license": "MIT",
"bugs": {
"url": "https://github.com/Stack-Five/discord-bot-boilerplate/issues"
},
"homepage": "https://github.com/Stack-Five/discord-bot-boilerplate#readme",
"dependencies": {
"@discordjs/builders": "^1.1.0",
"@discordjs/rest": "^1.0.1",
"discord.js": "^14.2.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"glob": "^8.0.3",
"isomorphic-fetch": "^3.0.0",
"nodemon": "^2.0.19"
},
"devDependencies": {
"commander": "^9.4.0",
"eslint": "^8.22.0",
"inquirer": "8.0.1",
"js-beautify": "^1.14.5",
"launch-editor": "^2.6.0",
"open": "^8.4.0"
}
}