some backend stuff and getting fe to build

This commit is contained in:
iamBadgers
2024-03-05 12:15:18 -08:00
parent 4d469ff1d5
commit 37efd3949d
18 changed files with 2647 additions and 26 deletions

22
backend/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"typescript": "^5.3.3"
},
"dependencies": {
"express": "^4.18.3"
}
}