Files
tcg-collectors-server/package.json
T
joseph.nelson4456 d47633b638
Build and Push Image / build-and-push (push) Failing after 1m30s
updated build file, package file, and dockerfile
2026-05-12 22:44:46 -07:00

43 lines
1018 B
JSON

{
"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",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --config prettier.config.js --write .",
"migrate": "node ./migrations/index.js"
},
"type": "module",
"keywords": [
"express",
"node.js",
"postgres",
"postgresql",
"database"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"csv-parser": "^3.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"node-pg": "^1.0.1",
"p-limit": "^7.3.0",
"pg": "^8.20.0"
},
"devDependencies": {
"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",
"node-pg-migrate": "^8.0.4",
"nodemon": "^3.0.0",
"prettier": "^3.8.3"
}
}