-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.11 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
{
"name": "discordbot-starter",
"version": "1.0.0",
"description": "🐇 A Basic Discord Bot Starter template. 🐳 Docker ready. ",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js",
"deploy-commands-dev": "node src/utils/deploy-commands.js",
"deploy-commands-global": "node src/utils/deploy-commands.js global",
"start": "pm2 start src/index.js --name discordbot-starter",
"stop": "pm2 stop discordbot-starter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rico-vz/discordbot-starter.git"
},
"author": "Rico van Zelst",
"license": "MIT",
"bugs": {
"url": "https://github.com/rico-vz/discordbot-starter/issues"
},
"homepage": "https://github.com/rico-vz/discordbot-starter#readme",
"dependencies": {
"chalk": "^4.1.2",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"nodemon": "^3.1.7",
"pm2": "^5.4.3"
},
"devDependencies": {
"@yikes2000/prettier-plugin-merge-extras": "^0.7.1-extras.4",
"prettier": "^3.4.1"
}
}