This commit is contained in:
Patryk Koreń
2026-07-02 23:55:40 +02:00
parent 04e34d15b5
commit e7ec832f5b
53 changed files with 9985 additions and 17 deletions

30
back/package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "back",
"version": "1.0.0",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --hot src/server.ts",
"start": "bun src/server.ts",
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/ldapjs": "^3.0.6",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"ldapjs": "^3.0.7"
}
}