-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.61 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.61 KB
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
{
"name": "fsu-bot",
"version": "1.0.0",
"description": "",
"main": "src/bot.js",
"type": "module",
"scripts": {
"start": "pm2 start ./src/bot.js --name fsu-bot --node-args='--max-old-space-size=4096' && pm2 save",
"log": "pm2 logs fsu-bot",
"kill": "pm2 kill fsu-bot",
"restart": "pm2 delete fsu-bot && pm2 start ./src/bot.js --name fsu-bot --node-args='--max-old-space-size=4096' && pm2 logs fsu-bot",
"status": "pm2 status fsu-bot",
"save": "pm2 save",
"delete": "pm2 delete fsu-bot",
"update": "pm2 update",
"start:debug": "node ./src/bot.js --debug",
"start:debug-help": "node ./src/utils/debug.js --help-debug",
"deploy-commands-guild": "node deploy-commands.js --guild",
"deploy-commands-global": "node deploy-commands.js --global"
},
"keywords": [],
"author": "FSU-Pulchowk",
"license": "No Redistribution License",
"dependencies": {
"axios": "^1.13.2",
"axis": "^1.0.0",
"cheerio": "^1.1.2",
"chrome-aws-lambda": "^1.20.1",
"discord.js": "^14.21.0",
"dotenv": "^17.0.1",
"exceljs": "^4.4.0",
"fast-xml-parser": "^5.2.5",
"googleapis": "^150.0.1",
"he": "^1.2.0",
"http-proxy-agent": "^7.0.2",
"node-fetch": "^3.3.2",
"node-schedule": "^2.1.1",
"nodemailer": "^7.0.11",
"pdf2pic": "^3.2.0",
"pdfjs-dist": "^5.3.93",
"pm2": "^6.0.14",
"puppeteer": "^24.14.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rss-parser": "^3.13.0",
"sqlite3": "^5.1.7",
"tar-fs": "^3.1.1",
"xlsx": "^0.18.5"
}
}