chat-relay/api-relay-server/package.json
BinaryBeastMaster 25abcd2974 Initial commit
2025-05-10 15:09:23 -07:00

32 lines
792 B
JSON

{
"name": "api-relay-server",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch src --ext ts --exec \"npm run build && npm start\"",
"prestart": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"ioredis": "^5.6.1",
"ws": "^8.18.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/ioredis": "^4.28.10",
"@types/ws": "^8.18.1",
"nodemon": "^3.1.10",
"typescript": "^5.8.3"
}
}