63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "aethex-connect",
|
|
"version": "1.0.0",
|
|
"description": "Next-generation communication platform for gamers with blockchain identity, real-time messaging, voice/video calls, and premium subscriptions",
|
|
"main": "src/backend/server.js",
|
|
"scripts": {
|
|
"start": "node src/backend/server.js",
|
|
"dev": "nodemon src/backend/server.js",
|
|
"migrate": "node src/backend/database/migrate.js",
|
|
"test": "jest",
|
|
"frontend:dev": "cd src/frontend && npm run dev",
|
|
"frontend:build": "cd src/frontend && npm run build"
|
|
},
|
|
"keywords": [
|
|
"gaming",
|
|
"communication",
|
|
"blockchain",
|
|
"domain-verification",
|
|
"real-time-messaging",
|
|
"webrtc",
|
|
"voice-calls",
|
|
"video-calls",
|
|
"stripe",
|
|
"subscription",
|
|
"gameforge",
|
|
"nexus-engine",
|
|
"aethex"
|
|
],
|
|
"author": "AeThex Corporation",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.90.1",
|
|
"bcrypt": "^5.1.1",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"ethers": "^6.10.0",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^7.1.5",
|
|
"helmet": "^7.1.0",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"pg": "^8.11.3",
|
|
"socket.io": "^4.8.3",
|
|
"socket.io-client": "^4.8.3",
|
|
"stripe": "^14.25.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.7.0",
|
|
"nodemon": "^3.0.2",
|
|
"supertest": "^6.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/AeThex-Corporation/AeThex-Connect.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/AeThex-Corporation/AeThex-Connect/issues"
|
|
},
|
|
"homepage": "https://github.com/AeThex-Corporation/AeThex-Connect#readme"
|
|
}
|