2
0
mirror of https://github.com/ad1217/PrinterStatus synced 2024-11-11 02:55:09 -05:00
PrinterStatus/server/package.json
Adam Goldsmith 7f2c4f48b2 server: Remove pretty-ms and node-gyp dependencies
Left over from when server and client shared dependencies
2021-11-03 18:55:58 -04:00

25 lines
549 B
JSON

{
"devDependencies": {
"@types/express": "^4.17.8",
"@types/express-ws": "^3.0.0",
"@types/http-proxy": "^1.17.4",
"@types/js-yaml": "^4.0.3",
"@types/node": "^16.10.3",
"@types/node-fetch": "^2.5.12",
"@types/ws": "^8.2.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"express": "^4.17.1",
"express-ws": "^5.0.2",
"http-proxy": "^1.18.1",
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.5",
"ws": "^8.2.3"
},
"scripts": {
"start": "ts-node ./server.ts"
}
}