{ "name": "schichtplan-backend", "license": "SEE LICENSE IN LICENSE.md", "author": "Patrick ", "version": "1.0.0", "type": "module", "scripts": { "dev": "npm run build && npx tsx src/server.ts", "build": "tsc", "start": "node dist/server.js", "prestart": "npm run build", "test": "jest", "test:python": "python -c \"from ortools.sat.python import cp_model; print('OR-Tools OK')\"", "docker:build": "docker build -t schichtplan-backend .", "docker:run": "docker run -p 3001:3001 schichtplan-backend" }, "dependencies": { "@types/bcrypt": "^6.0.0", "bcrypt": "^6.0.0", "bcryptjs": "^2.4.3", "cors": "^2.8.5", "express": "^4.18.2", "jsonwebtoken": "^9.0.2", "sqlite3": "^5.1.6", "uuid": "^9.0.0" }, "devDependencies": { "@types/bcryptjs": "^2.4.2", "@types/cors": "^2.8.13", "@types/express": "^4.17.17", "@types/jsonwebtoken": "^9.0.2", "@types/uuid": "^9.0.2", "@types/jest": "^29.5.0", "ts-node": "^10.9.0", "typescript": "^5.0.0", "tsx": "^4.0.0" } }