
- Complete NestJS TypeScript implementation with WebSocket support - Direct messaging (DM) and group chat functionality - End-to-end encryption with AES encryption and key pairs - Media file support (images, videos, audio, documents) up to 100MB - Push notifications with Firebase Cloud Messaging integration - Mention alerts and real-time typing indicators - User authentication with JWT and Passport - SQLite database with TypeORM entities and relationships - Comprehensive API documentation with Swagger/OpenAPI - File upload handling with secure access control - Online/offline status tracking and presence management - Message editing, deletion, and reply functionality - Notification management with automatic cleanup - Health check endpoint for monitoring - CORS configuration for cross-origin requests - Environment-based configuration management - Structured for Flutter SDK integration Features implemented: ✅ Real-time messaging with Socket.IO ✅ User registration and authentication ✅ Direct messages and group chats ✅ Media file uploads and management ✅ End-to-end encryption ✅ Push notifications ✅ Mention alerts ✅ Typing indicators ✅ Message read receipts ✅ Online status tracking ✅ File access control ✅ Comprehensive API documentation Ready for Flutter SDK development and production deployment.
72 lines
2.0 KiB
JSON
72 lines
2.0 KiB
JSON
{
|
|
"name": "@nestjs/config",
|
|
"version": "3.3.0",
|
|
"description": "Nest - modern, fast, powerful node.js web framework (@config)",
|
|
"author": "Kamil Mysliwiec",
|
|
"license": "MIT",
|
|
"url": "https://github.com/nestjs/config#readme",
|
|
"scripts": {
|
|
"build": "rimraf -rf dist && tsc -p tsconfig.json",
|
|
"format": "prettier --write \"{lib,test}/**/*.ts\"",
|
|
"lint": "eslint 'lib/**/*.ts' --fix",
|
|
"prepublish:npm": "npm run build",
|
|
"publish:npm": "npm publish --access public",
|
|
"prepublish:next": "npm run build",
|
|
"publish:next": "npm publish --access public --tag next",
|
|
"test:integration": "jest --config ./tests/jest-e2e.json --runInBand",
|
|
"prerelease": "npm run build",
|
|
"release": "release-it"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "16.4.5",
|
|
"dotenv-expand": "10.0.0",
|
|
"lodash": "4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "19.5.0",
|
|
"@commitlint/config-angular": "19.5.0",
|
|
"@nestjs/common": "10.4.5",
|
|
"@nestjs/core": "10.4.5",
|
|
"@nestjs/platform-express": "10.4.5",
|
|
"@nestjs/testing": "10.4.5",
|
|
"@types/jest": "29.5.13",
|
|
"@types/lodash": "4.17.12",
|
|
"@types/node": "20.16.13",
|
|
"@typescript-eslint/eslint-plugin": "8.10.0",
|
|
"@typescript-eslint/parser": "8.10.0",
|
|
"eslint": "9.13.0",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-plugin-import": "2.31.0",
|
|
"husky": "9.1.6",
|
|
"jest": "29.7.0",
|
|
"joi": "17.13.3",
|
|
"lint-staged": "15.2.10",
|
|
"prettier": "3.3.3",
|
|
"reflect-metadata": "0.2.2",
|
|
"release-it": "17.10.0",
|
|
"rimraf": "6.0.1",
|
|
"rxjs": "7.8.1",
|
|
"ts-jest": "29.2.5",
|
|
"typescript": "5.6.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
|
|
"rxjs": "^7.1.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nestjs/config"
|
|
}
|
|
}
|