Spaces:
Sleeping
Sleeping
File size: 1,172 Bytes
1cf0854 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | {
"name": "mcp-chat-support-backend",
"version": "1.0.0",
"description": "Backend API for MCP Chat Support Platform",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"migrate": "tsx src/db/migrate.ts"
},
"dependencies": {
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"google-auth-library": "^9.4.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1",
"ws": "^8.14.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/node": "^22.15.29",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
}
}
|