41 lines
952 B
JSON
41 lines
952 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 ."
|
|
},
|
|
"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"
|
|
},
|
|
"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"
|
|
}
|
|
}
|