This commit is contained in:
2026-02-21 08:05:33 -05:00
parent bba007f1dc
commit 9531953b48
114 changed files with 872 additions and 0 deletions

23
backend/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "backend",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node ./bin/www",
"reinstall": "rm -rf node_modules/ package-lock.json && npm install"
},
"dependencies": {
"adm-zip": "^0.5.16",
"axios": "^1.13.5",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"fs": "^0.0.1-security",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"morgan": "~1.9.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
}
}