Update Dockerfile; fix index.html and add build scripts

This commit is contained in:
2025-04-15 15:38:10 +02:00
parent 130dd4922d
commit e7b4456ddb
6 changed files with 45 additions and 8 deletions

View File

@ -6,6 +6,7 @@
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"build": "tsc",
"build:all": "npm run build && cd frontend && npm run build",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"format:all": "npm run format && cd frontend && npm run format"