mirror of
https://github.com/BinaryBeastMaster/chat-relay.git
synced 2026-04-28 11:49:29 +00:00
32 lines
792 B
JSON
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"
|
|
}
|
|
}
|