forked from cappig/MC-status-bot
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.95 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
65
{
"name": "mc-server-status-bot",
"version": "2.3.4",
"description": "A discord bot that displays if a MC server is online",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "",
"format": "prettier --write .",
"start:pm2": "pm2 start index.js",
"stop:pm2": "pm2 kill",
"restart:pm2": "npm run stop:pm2 && npm run start:pm2"
},
"pre-commit": "format",
"repository": {
"type": "git",
"url": "git+https://github.com/404invalid-user/MC-server-status-bot.git"
},
"keywords": [
"discord",
"bot",
"minecraft"
],
"author": "404invalid-user",
"main-author": "Cappig",
"license": "MIT",
"bugs": {
"url": "https://github.com/404invalid-user/MC-server-status-bot/issues"
},
"homepage": "https://www.mcstatusbot.site",
"dependencies": {
"@404invalid-user/logger": "^1.0.1",
"@discordjs/rest": "^0.3.0",
"axios": "^0.27.2",
"chalk": "4.1.2",
"chart.js": "^3.7.0",
"chartjs-node-canvas": "^4.1.5",
"chartjs-plugin-datalabels": "^2.0.0",
"discord-bitfield-calculator": "^1.0.0",
"discord-modals": "^1.3.3",
"discord.js": "^13.5.0",
"discord.js-rate-limiter": "^1.2.3",
"dotenv": "^14.3.2",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"fast-xml-parser": "^4.0.0-beta.8",
"ioredis": "^4.28.2",
"minecraft-server-util": "^5.2.8",
"moment": "^2.29.1",
"mongo-sanitize": "^1.1.0",
"mongoose": "^6.1.4",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.2",
"puppeteer": "^13.5.1",
"randomstring": "^1.2.2",
"shortid": "^2.2.16",
"topgg-autoposter": "^2.0.1",
"uniqid": "^5.4.0"
},
"devDependencies": {
"nodemon": "^2.0.15",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1"
}
}