
- 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.
73 lines
1.9 KiB
JSON
73 lines
1.9 KiB
JSON
{
|
|
"name": "@nestjs/serve-static",
|
|
"version": "4.0.2",
|
|
"description": "Nest - modern, fast, powerful node.js web framework (@serve-static)",
|
|
"author": "Kamil Mysliwiec",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "npm run build:lib",
|
|
"build:lib": "tsc -p tsconfig.json",
|
|
"format": "prettier --write \"**/*.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",
|
|
"prerelease": "npm run build",
|
|
"release": "release-it",
|
|
"prepare": "husky install"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^9.0.0 || ^10.0.0",
|
|
"@nestjs/core": "^9.0.0 || ^10.0.0",
|
|
"express": "^4.18.1",
|
|
"fastify": "^4.7.0",
|
|
"@fastify/static": "^6.5.0 || ^7.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"express": {
|
|
"optional": true
|
|
},
|
|
"fastify": {
|
|
"optional": true
|
|
},
|
|
"@fastify/static": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "19.2.1",
|
|
"@commitlint/config-angular": "19.1.0",
|
|
"@nestjs/common": "10.3.7",
|
|
"@nestjs/core": "10.3.7",
|
|
"@types/node": "20.11.30",
|
|
"@typescript-eslint/eslint-plugin": "7.4.0",
|
|
"@typescript-eslint/parser": "7.4.0",
|
|
"eslint": "8.57.0",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-plugin-import": "2.29.1",
|
|
"express": "4.19.2",
|
|
"fastify": "4.26.2",
|
|
"@fastify/static": "7.0.1",
|
|
"husky": "9.0.11",
|
|
"lint-staged": "15.2.2",
|
|
"prettier": "3.2.5",
|
|
"reflect-metadata": "0.2.1",
|
|
"release-it": "17.1.1",
|
|
"rxjs": "7.8.1",
|
|
"typescript": "5.4.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nestjs/serve-static"
|
|
},
|
|
"dependencies": {
|
|
"path-to-regexp": "0.2.5"
|
|
}
|
|
}
|