mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-11-30 22:45:46 +01:00
33 lines
767 B
JSON
33 lines
767 B
JSON
{
|
|
"name": "schichtplan-backend",
|
|
"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"
|
|
},
|
|
"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",
|
|
"worker_threads": "native"
|
|
},
|
|
"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",
|
|
"ts-node": "^10.9.0",
|
|
"typescript": "^5.0.0",
|
|
"tsx": "^4.0.0"
|
|
}
|
|
}
|