AeThex-Connect/package.json

79 lines
2.3 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",
"private": true,
"workspaces": [
"packages/core",
"packages/ui",
"packages/web"
],
"main": "src/backend/server.js",
"scripts": {
"start": "node src/backend/server.js",
"build": "cd src/frontend && npm install && npm run build",
"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",
"packages:install": "npm install --workspaces",
"packages:build": "npm run build --workspaces --if-present",
"ui:build": "npm run build -w @aethex/ui",
"web:dev": "npm run dev -w @aethex/web",
"web:build": "npm run build -w @aethex/web",
"mobile:android": "npm run android -w @aethex/mobile",
"mobile:ios": "npm run ios -w @aethex/mobile",
"desktop:dev": "npm run dev -w @aethex/desktop",
"desktop:build": "npm run build -w @aethex/desktop"
},
"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"
}