29 lines
632 B
JSON
29 lines
632 B
JSON
{
|
|
"name": "fems-realtime-api",
|
|
"version": "1.0.0",
|
|
"description": "Factory Energy Management System Realtime 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.6.2",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"ioredis": "^5.3.2",
|
|
"mqtt": "^5.3.0",
|
|
"pg": "^8.11.3",
|
|
"winston": "^3.11.0",
|
|
"winston-daily-rotate-file": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.40.0",
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^2.0.22"
|
|
}
|
|
}
|