express.js setup

This commit is contained in:
Linus109
2025-12-05 20:10:06 +01:00
parent b4ac86068e
commit cc1af29e02
6 changed files with 15028 additions and 3 deletions

View File

@@ -3,11 +3,17 @@
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "tsx watch src/index.ts",
"dev": "tsx watch src/app.ts",
"build": "tsc",
"start": "node dist/index.js"
"start": "node dist/app.js"
},
"dependencies": {
"@caldav/shared": "*"
"@caldav/shared": "*",
"express": "^5.2.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^24.10.1",
"tsx": "^4.21.0"
}
}