Firts Upload

This commit is contained in:
2026-04-17 19:26:02 +02:00
parent caa55bad77
commit 3c5b3b4c1e
25 changed files with 2252 additions and 0 deletions

18
server/package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "dare-server",
"version": "2.0.0",
"type": "module",
"scripts": {
"kill": "pkill -9 bun && pkill -9 node || true",
"del": "rm node_modules/.vite/deps -r",
"gen:schema": "bun run scripts/generate-schema.js",
"dev": "bun gen:schema && bun --watch index.js",
"build": "bun build index.js --target bun --outdir ./dist"
},
"dependencies": {
"hono": "^4.12.7",
"mariadb": "^3.5.2",
"nodemailer": "^8.0.2",
"sharp": "^0.34.5"
}
}