working on healthcheck api and auth api (#2)

Reviewed-on: #2
Co-authored-by: Joseph Nelson <joseph.nelson4456@gmail.com>
Co-committed-by: Joseph Nelson <joseph.nelson4456@gmail.com>
This commit was merged in pull request #2.
This commit is contained in:
2026-05-15 22:37:27 -07:00
committed by joseph.nelson4456
parent ce914f91fd
commit 2636816241
16 changed files with 151 additions and 36 deletions
+12 -5
View File
@@ -4,12 +4,11 @@
"description": "A basic Express application with PostgreSQL integration.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --config prettier.config.js --write .",
"migrate": "node-pg-migrate"
"migrate": "node-pg-migrate",
"test": "jest --forceExit"
},
"type": "module",
"keywords": [
@@ -22,14 +21,21 @@
"author": "Your Name",
"license": "MIT",
"dependencies": {
"bcryptjs": "^3.0.3",
"body-parser": "^2.2.2",
"cors": "^2.8.6",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express": "^4.22.2",
"jsonwebtoken": "^9.0.3",
"node-pg": "^1.0.1",
"p-limit": "^7.3.0",
"pg": "^8.20.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.5",
"babel-jest": "^30.4.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
@@ -37,6 +43,7 @@
"jest": "^29.0.0",
"node-pg-migrate": "^8.0.4",
"nodemon": "^3.0.0",
"prettier": "^3.8.3"
"prettier": "^3.8.3",
"supertest": "^7.2.2"
}
}