websocket-canvas/server/package.json

18 lines
356 B
JSON
Raw Permalink Normal View History

{
"scripts": {
"build": "npm install && tsc -p ./",
"start": "node dist/app.js",
"launch": "npm-run-all build start"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^16.7.1",
"@types/ws": "^7.4.7",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.5"
},
"dependencies": {
"ws": "^8.2.0"
}
}