33 lines
787 B
JSON
33 lines
787 B
JSON
{
|
|
"name": "websocket-server",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "tsc",
|
|
"start": "node dist/server.js",
|
|
"dev": "tsc-watch --onSuccess \"node dist/server.js\"",
|
|
"go": "tsc-watch --onSuccess \"node dist/server.js\""
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.1",
|
|
"pg": "^8.13.0",
|
|
"socket.io": "^4.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^22.7.8",
|
|
"@types/pg": "^8.11.10",
|
|
"@types/socket.io": "^3.0.2",
|
|
"tsc-watch": "^6.2.0",
|
|
"typescript": "^5.6.3"
|
|
}
|
|
}
|