mirror of
https://github.com/DeNNiiInc/Connect-5.git
synced 2026-04-17 18:26:01 +00:00
- Replace @supabase/supabase-js with native pg library - Rewrite database.js to use PostgreSQL connection pool - Update server.js with PostgreSQL connection testing - Create postgres-schema.sql with complete database schema - Add apply-schema.js script for easy schema deployment - Update all documentation (README.md, DEPLOYMENT.md, deploy.sh) - Remove Supabase-specific files and references - Update db.config.example.js with PostgreSQL format
30 lines
597 B
JSON
30 lines
597 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",
|
|
"pg": "^8.11.3",
|
|
"bad-words": "^3.0.4",
|
|
"cors": "^2.8.5"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
}
|
|
}
|