mirror of
https://github.com/ad1217/PrinterStatus
synced 2024-11-10 18:45:08 -05:00
Adam Goldsmith
cc0f6d90d0
This should result in a significant decrease in bandwidth requirements, as well as providing the ability to reconnect to streams
26 lines
591 B
JSON
26 lines
591 B
JSON
{
|
|
"name": "printer_status",
|
|
"version": "0.0.0",
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^1.9.3",
|
|
"concurrently": "^6.3.0",
|
|
"sass": "^1.42.1",
|
|
"typescript": "^4.4.3",
|
|
"vite": "^2.6.4",
|
|
"vue-tsc": "^0.3.0"
|
|
},
|
|
"dependencies": {
|
|
"bootstrap": "^5.1.3",
|
|
"hls.js": "^1.0.12",
|
|
"pretty-ms": "^7.0.1",
|
|
"vue": "^3.2.0"
|
|
},
|
|
"scripts": {
|
|
"start": "concurrently -n server,client 'npm:server' 'npm:dev'",
|
|
"server": "cd server && npm start",
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"serve": "vite preview"
|
|
}
|
|
}
|