2
0
mirror of https://github.com/ad1217/PrinterStatus synced 2024-09-21 13:49:04 -04:00
PrinterStatus/server/package.json
2023-01-12 00:07:33 -05:00

31 lines
717 B
JSON

{
"type": "module",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/express-ws": "^3.0.1",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/js-yaml": "^4.0.5",
"@types/mp4frag": "^0.6.1",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@types/ws": "^8.5.4",
"tsx": "^3.12.2",
"typescript": "^4.9.4"
},
"dependencies": {
"express": "^4.18.2",
"express-ws": "^5.0.2",
"fluent-ffmpeg": "^2.1.2",
"js-yaml": "^4.1.0",
"mp4frag": "^0.6.0",
"node-fetch": "^3.3.0",
"ws": "^8.12.0"
},
"scripts": {
"start": "npm run dev",
"dev": "tsx watch ./src/server.ts",
"build": "tsc",
"serve": "node dist/server.js"
}
}