whisky_collector/backend/package.json

38 lines
815 B
JSON
Raw Normal View History

2025-03-05 11:51:33 -05:00
{
"name": "whisky-collector-backend",
"version": "1.0.0",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
2025-03-05 17:11:41 -05:00
"prod": "NODE_ENV=production node src/app.js",
"test": "NODE_ENV=test jest --forceExit",
"test:watch": "NODE_ENV=test jest --watch",
"start:test": "NODE_ENV=test node src/app.js"
2025-03-05 11:51:33 -05:00
},
"keywords": [
"whiskey",
"collection",
"rating",
"node",
"express",
"postgresql"
],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.6"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}