nakama/package.json

50 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2025-11-03 20:35:01 +00:00
{
"name": "nakama-space",
"version": "1.0.0",
2025-12-01 14:26:18 +00:00
"description": "Nakama - Telegram Mini App социальная сеть",
2025-11-03 20:35:01 +00:00
"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",
2025-11-10 20:13:22 +00:00
"start": "node backend/server.js",
"mod-client": "cd moderation/frontend && npm run dev",
"mod-build": "cd moderation/frontend && npm run build"
2025-11-03 20:35:01 +00:00
},
"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",
2025-11-03 22:55:21 +00:00
"form-data": "^4.0.0",
2025-11-03 20:35:01 +00:00
"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",
2025-11-04 22:02:23 +00:00
"socket.io-client": "^4.6.0",
"helmet": "^7.1.0",
"express-mongo-sanitize": "^2.2.0",
"xss-clean": "^0.1.4",
2025-11-04 22:23:33 +00:00
"hpp": "^0.2.3",
2025-11-10 21:56:36 +00:00
"validator": "^13.11.0",
2025-11-20 22:07:37 +00:00
"@telegram-apps/init-data-node": "^1.0.4",
"@aws-sdk/client-s3": "^3.451.0",
"@aws-sdk/lib-storage": "^3.451.0",
"@aws-sdk/s3-request-presigner": "^3.451.0"
2025-11-03 20:35:01 +00:00
},
"devDependencies": {
"nodemon": "^3.0.1",
"concurrently": "^8.2.2"
}
}