Files
BattleBot/package.json
VinceC 3453be6947 Dev (#12)
* health check

* Update Dockerfile

* simplifying the deployment

* Update Bot.js

makes the find team command public

* test (#9)

* Dev (#7)

* health check

* Update Dockerfile

* simplifying the deployment

* Dev (#8)

* health check

* Update Dockerfile

* simplifying the deployment

* Update Bot.js

makes the find team command public

* Update PlayerService.js

* massive update????

could break stuff

* Update Bot.js

update
2025-07-07 21:38:19 -05:00

33 lines
1.0 KiB
JSON

{
"name": "discord-bot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config index.js",
"dev": "nodemon -r dotenv/config index.js",
"deploy-commands": "node -r dotenv/config deploy-commands.js",
"deploy-commands:dev": "node -r dotenv/config deploy-commands.js",
"test:webhook": "node -r dotenv/config src/tests/testWebhook.js",
"test:connection": "node -r dotenv/config src/tests/testConnection.js",
"test:supabase": "node -r dotenv/config src/tests/testSupabase.js",
"seed:games": "node -r dotenv/config src/scripts/seedGames.js",
"verify:setup": "node -r dotenv/config src/scripts/verifysetup.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@supabase/supabase-js": "^2.46.1",
"axios": "^1.6.0",
"discord.js": "^14.16.2",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"undici": "^6.19.8",
"winston": "^3.17.0"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}