Server
- Working init discord bot
- Modular events and commands
- Has access to the socket server
- Working init socket server
- Need to work on getting access to discord bot
- Working init web server
Currently working on breaking out the init of the socket server
Client
- Working init socket client
Currently working on the discord bot to join voice channels
21 lines
427 B
JSON
21 lines
427 B
JSON
{
|
|
"name": "drb-server",
|
|
"version": "3.0.0",
|
|
"description": "",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "node server.js"
|
|
},
|
|
"author": "Logan Cusano",
|
|
"license": "ISC",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"discord.js": "^14.14.1",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"morgan": "^1.10.0",
|
|
"socket.io": "^4.7.2"
|
|
}
|
|
}
|