-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 875 Bytes
/
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
{
"name": "EasyDiscordBotBase",
"version": "2.0.0",
"description": "EasyDiscordBotBase is a ready to use discord bot base that allows creation of custom modules by the owner.",
"license": "CC0-1.0",
"main": "index.js",
"scripts": {
"start": "pm2 start index.js --name DiscordBot --interpreter node --watch",
"stop": "pm2 stop DiscordBot",
"refresh-commands": "node deploy-commands.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"monitor": "pm2 monit",
"monitor-remote": "pm2 monitor"
},
"dependencies": {
"@discordjs/rest": "^1.0.0",
"discord.js": "^14.0.3",
"dotenv": "^16.0.1",
"pm2": "^5.2.0"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0"
}
}