-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.13 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
{
"name": "linked-discord-bot",
"author": "André Weller <[email protected]> (https://lost.design/)",
"version": "1.0.0",
"description": "This is a bot for the https://github.com/lostdesign/linked discord community.",
"main": "index.js",
"scripts": {
"start": "node .",
"update:slash-commands": "node deploy-commands.js",
"pm2-restart": "pm2 startOrRestart ecosystem.config.js",
"pm2-deploy": "pm2 deploy ecosystem.config.js production",
"pm2-logs": "pm2 deploy ecosystem.config.js production exec \"pm2 logs\"",
"pm2-ls": "pm2 deploy ecosystem.config.js production exec \"pm2 ls\"",
"pm2-flush": "pm2 deploy ecosystem.config.js production exec \"pm2 flush\"",
"pm2-init": "pm2 deploy ecosystem.config.js production setup"
},
"license": "GPLv3",
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"collect.js": "^4.31.3",
"discord-api-types": "^0.26.1",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"luxon": "^2.3.0",
"node-fetch": "^2.6.7",
"pm2": "^5.2.0",
"pretty-ms": "^7.0.1"
},
"devDependencies": {
"eslint": "^8.8.0"
}
}