mirror of
https://github.com/DeNNiiInc/Connect-5.git
synced 2026-04-18 13:55:59 +00:00
- 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
31 lines
640 B
JSON
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"
|
|
}
|
|
}
|