Initial commit

This commit is contained in:
2025-03-06 12:24:20 +01:00
commit 7f3cefdc22
37 changed files with 6581 additions and 0 deletions

48
package.json Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "backend2",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "webpack"
},
"keywords": [],
"author": "Slasherss",
"license": "GPL-3.0-or-later",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"connect-history-api-fallback": "^2.0.0",
"connect-mongo": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"mongoose": "^7.4.1",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"speakeasy": "^2.0.0",
"tx2": "^1.0.5",
"web-push": "^3.6.7",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/multer": "^1.4.11",
"@types/passport": "^1.0.12",
"@types/passport-local": "^1.0.35",
"@types/speakeasy": "^2.0.10",
"@types/web-push": "^3.6.3",
"javascript-obfuscator": "^4.1.0",
"nodemon": "^3.0.1",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"webpack-obfuscator": "^3.5.1"
}
}