Inital Work, web server broke again, trying to get scale and rotation setup

This commit is contained in:
2025-10-17 09:08:31 +11:00
commit 443e6177ca
16 changed files with 842 additions and 0 deletions

28
backend/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "print-webui-backend",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"dependencies": {
"better-sqlite3": "9.6.0",
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.19.2",
"mime-types": "2.1.35",
"multer": "1.4.5-lts.1"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.9",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/mime-types": "2.1.4",
"@types/multer": "1.4.12",
"tsx": "4.19.1",
"typescript": "5.6.3"
}
}