38 lines
952 B
JSON
38 lines
952 B
JSON
{
|
|
"name": "backend",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "NODE_ENV=production node app.js",
|
|
"cleanup": "lsof -ti:3030 | xargs kill -9 || true",
|
|
"dev": "npm run cleanup && NODE_ENV=development nodemon app.js",
|
|
"test": "NODE_ENV=test jest"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"dependencies": {
|
|
"bcrypt": "^5.1.1",
|
|
"body-parser": "^1.20.3",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.7",
|
|
"express": "^4.21.2",
|
|
"express-session": "^1.18.1",
|
|
"express-validator": "^7.2.1",
|
|
"helmet": "^8.0.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"mariadb": "^3.4.0",
|
|
"mongoose": "^8.12.1",
|
|
"morgan": "^1.10.0",
|
|
"mysql2": "^3.13.0",
|
|
"sequelize": "^6.37.6",
|
|
"socket.io": "^4.8.1",
|
|
"winston": "^3.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"sequelize-cli": "^6.6.2"
|
|
}
|
|
}
|