This commit is contained in:
Bastian Wagner
2026-07-15 14:09:28 +02:00
commit 3e5348b7ec
104 changed files with 30367 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "ldap-portal",
"private": true,
"workspaces": [
"apps/api",
"apps/web"
],
"scripts": {
"build": "npm run build -w @ldap-portal/api && npm run build -w @ldap-portal/web",
"start:api": "npm run start:dev -w @ldap-portal/api",
"start:web": "npm run start -w @ldap-portal/web",
"test": "npm test -w @ldap-portal/api",
"lint": "npm run lint -w @ldap-portal/api && npm run lint -w @ldap-portal/web"
},
"devDependencies": {
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}