AeThex-Connect/package.json
MrPiglr cad2e81fc4
Phase 2: Complete Messaging System Implementation
- Added real-time messaging with Socket.io
- Created comprehensive database schema (8 tables, functions, triggers)
- Implemented messaging service with full CRUD operations
- Built Socket.io service for real-time communication
- Created React messaging components (Chat, ConversationList, MessageList, MessageInput)
- Added end-to-end encryption utilities (RSA + AES-256-GCM)
- Implemented 16 RESTful API endpoints
- Added typing indicators, presence tracking, reactions
- Created modern, responsive UI with animations
- Updated server with Socket.io integration
- Fixed auth middleware imports
- Added comprehensive documentation

Features:
- Direct and group conversations
- Real-time message delivery
- Message editing and deletion
- Emoji reactions
- Typing indicators
- Online/offline presence
- Read receipts
- User search
- File attachment support (endpoint ready)
- Client-side encryption utilities

Dependencies:
- socket.io ^4.7.5
- socket.io-client ^4.7.5
2026-01-10 04:45:07 +00:00

40 lines
1 KiB
JSON

{
"name": "aethex-passport-domain-verification",
"version": "1.0.0",
"description": "Domain verification feature for AeThex Passport",
"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": [
"domain-verification",
"dns",
"blockchain",
"passport"
],
"author": "AeThex Corporation",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.90.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"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
}
}