mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-12-01 06:55:45 +01:00
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"name": "schichtplan-backend",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "npm run build && npx tsx src/server.ts",
|
|
"dev:single": "cross-env NODE_ENV=development TRUST_PROXY_ENABLED=false SEED_TEST_DATA=true npx tsx src/server.ts",
|
|
"seed:test-data": "npx tsx src/scripts/seedTestData.ts",
|
|
"dev:all": "npm run dev:single",
|
|
"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",
|
|
"@types/node": "24.9.2",
|
|
"vite": "7.1.12",
|
|
"bcrypt": "^6.0.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"express": "^4.18.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"sqlite3": "^5.1.6",
|
|
"uuid": "^9.0.0",
|
|
"express-rate-limit": "8.1.0",
|
|
"helmet": "8.1.0",
|
|
"express-validator": "7.3.0",
|
|
"exceljs": "4.4.0",
|
|
"playwright-chromium": "^1.37.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.2",
|
|
"@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",
|
|
"cross-env": "10.1.0"
|
|
}
|
|
} |