server doesn't like running on bun so init npm

This commit is contained in:
KoenDR06 2025-12-27 13:48:29 +01:00
parent f7cc4c9a5c
commit 407dd2af05
2 changed files with 832 additions and 0 deletions

9
package.json Normal file
View file

@ -0,0 +1,9 @@
{
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^5.2.1"
}
}