Port backend to Node.js

This commit is contained in:
𝓜𝓪𝓬𝓮™
2025-06-11 14:07:20 +02:00
parent a1afe26414
commit c04a651b8d
8 changed files with 2742 additions and 14 deletions

17
package.json Normal file
View File

@ -0,0 +1,17 @@
{
"name": "ceph-calculator-node",
"version": "1.0.0",
"description": "Node.js version of Ceph calculator",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^4.18.2",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"body-parser": "^1.20.2",
"pdfkit": "^0.13.0",
"ejs": "^3.1.9"
}
}