Files
Connect-5/package.json
DeNNiiInc 054cbf3e77 Migrate database from MySQL to Supabase PostgreSQL
- Added @supabase/supabase-js client library
- Rewrote database.js to use Supabase API
- Updated server.js health check for Supabase
- Updated db.config.example.js with Supabase format
- Created comprehensive SUPABASE_SETUP.md guide
- Added SQL schema files for easy deployment
- Updated README_DB_CONFIG.md for Supabase

Benefits:
- Managed PostgreSQL database
- Built-in Row Level Security
- Real-time capabilities
- Easy monitoring via dashboard
- Free tier for development
2025-12-21 15:40:57 +11:00

31 lines
640 B
JSON

{
"name": "connect5-multiplayer",
"version": "1.0.0",
"description": "Connect-5 multiplayer game server with real-time gameplay",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"connect5",
"gomoku",
"multiplayer",
"socketio",
"game"
],
"author": "Beyond Cloud Technology",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.6.1",
"mysql2": "^3.6.5",
"@supabase/supabase-js": "^2.39.0",
"bad-words": "^3.0.4",
"cors": "^2.8.5"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}