39 lines
889 B
JSON
39 lines
889 B
JSON
{
|
|
"name": "fems-api",
|
|
"version": "1.0.0",
|
|
"description": "Factory Energy Management System API",
|
|
"private": true,
|
|
"main": "src/app.js",
|
|
"scripts": {
|
|
"start": "node src/app.js",
|
|
"dev": "nodemon src/app.js",
|
|
"lint": "eslint src/",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.7.7",
|
|
"bcryptjs": "^2.4.3",
|
|
"cors": "^2.8.5",
|
|
"crypto": "^1.0.1",
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"express-validator": "^7.0.1",
|
|
"ioredis": "^5.4.1",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"mongoose": "^8.8.1",
|
|
"multer": "^1.4.5-lts.1",
|
|
"pg": "^8.11.0",
|
|
"pg-hstore": "^2.3.4",
|
|
"sequelize": "^6.31.1",
|
|
"uuid": "^11.0.2",
|
|
"winston": "^3.8.2",
|
|
"winston-daily-rotate-file": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.40.0",
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^2.0.22",
|
|
"supertest": "^6.3.3"
|
|
}
|
|
}
|