Working base server with migrations and build steps ironed out #1

Merged
joseph.nelson4456 merged 24 commits from base-setup into main 2026-05-13 23:16:22 -07:00
Showing only changes of commit 7ca5c4e574 - Show all commits
+28
View File
@@ -0,0 +1,28 @@
{
"name": "express-postgres-example",
"version": "1.0.0",
"description": "A basic Express application with PostgreSQL integration.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"keywords": [
"express",
"node.js",
"postgres",
"postgresql",
"database"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"pg": "^8.8.0",
"dotenv": "^16.0.3",
"nodemon": "^3.0.0"
},
"devDependencies": {
"jest": "^29.0.0"
}
}