added some base code to start doing work

This commit is contained in:
2026-05-10 13:20:08 -07:00
parent 7ca5c4e574
commit 6942a2de8f
6 changed files with 92 additions and 6 deletions
+15 -6
View File
@@ -1,12 +1,16 @@
{
"name": "express-postgres-example",
"name": "tcg-collectors-server",
"version": "1.0.0",
"description": "A basic Express application with PostgreSQL integration.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
"dev": "nodemon app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --config prettier.config.js --write ."
},
"type": "module",
"keywords": [
"express",
"node.js",
@@ -17,12 +21,17 @@
"author": "Your Name",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"pg": "^8.8.0",
"dotenv": "^16.0.3",
"nodemon": "^3.0.0"
"express": "^4.18.2",
"pg": "^8.8.0"
},
"devDependencies": {
"jest": "^29.0.0"
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^29.0.0",
"nodemon": "^3.0.0",
"prettier": "^3.8.3"
}
}