nakama/package.json

47 lines
1.3 KiB
JSON

{
"name": "nakama-space",
"version": "1.0.0",
"description": "NakamaSpace - Telegram Mini App социальная сеть",
"main": "backend/server.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon backend/server.js",
"client": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"start": "node backend/server.js",
"mod-client": "cd moderation/frontend && npm run dev",
"mod-build": "cd moderation/frontend && npm run build"
},
"keywords": ["telegram", "mini-app", "social-network"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"mongoose": "^8.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"axios": "^1.6.0",
"form-data": "^4.0.0",
"multer": "^1.4.5-lts.1",
"crypto": "^1.0.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"express-rate-limit": "^7.1.5",
"redis": "^4.6.11",
"socket.io": "^4.6.0",
"i18next": "^23.7.8",
"socket.io-client": "^4.6.0",
"helmet": "^7.1.0",
"express-mongo-sanitize": "^2.2.0",
"xss-clean": "^0.1.4",
"hpp": "^0.2.3",
"validator": "^13.11.0",
"cookie-parser": "^1.4.6"
},
"devDependencies": {
"nodemon": "^3.0.1",
"concurrently": "^8.2.2"
}
}