add in sequelize, setup apis

This commit is contained in:
iamBadgers
2024-03-06 23:15:47 -08:00
parent f346bcafc0
commit 05e31f5986
3 changed files with 1528 additions and 30 deletions

View File

@@ -6,13 +6,16 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
"format": "prettier --write src/",
"dev": "npx tsc && node dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/sequelize": "^4.28.20",
"@types/sqlite3": "^3.1.11",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
@@ -20,6 +23,10 @@
"typescript": "^5.3.3"
},
"dependencies": {
"express": "^4.18.3"
"@types/body-parser": "^1.19.5",
"body-parser": "^1.20.2",
"express": "^4.18.3",
"sequelize": "^6.37.1",
"sqlite3": "^5.1.7"
}
}