2025-10-06 13:36:15 -03:00
{
"name" : "integra-hubsoft-glpi" ,
"version" : "1.0.0" ,
"main" : "index.js" ,
"scripts" : {
2026-01-02 18:19:11 -03:00
"start:api" : "cross-env NODE_ENV=production node src/infra/http/server.js" ,
"dev:api" : "cross-env NODE_ENV=development nodemon src/infra/http/server.js" ,
"start:worker" : "cross-env NODE_ENV=production node src/infra/cron/sync.cron.js" ,
"dev:worker" : "cross-env NODE_ENV=development nodemon src/infra/cron/sync.cron.js" ,
2026-01-12 16:42:08 -03:00
"start:watchdog" : "cross-env NODE_ENV=production node src/infra/cron/observer.cron.js" ,
"dev:watchdog" : "cross-env NODE_ENV=development nodemon src/infra/cron/observer.cron.js" ,
2025-12-01 11:39:04 -03:00
"test" : "echo \"Error: no test specified\" && exit 1" ,
"postinstall" : "node -e \"const fs = require('fs'); if (fs.existsSync('.env') && !fs.existsSync('.env.development')) { fs.copyFileSync('.env', '.env.development'); console.log('✅ .env.development criado a partir do .env'); }\""
2025-10-06 13:36:15 -03:00
} ,
2025-12-01 11:39:04 -03:00
"author" : "Equipe de Desenvolvimento Sothis" ,
2025-10-06 13:36:15 -03:00
"license" : "ISC" ,
2025-10-07 11:04:29 -03:00
"description" : "" ,
"dependencies" : {
2025-11-10 17:01:33 -03:00
"axios" : "^1.13.2" ,
2025-10-07 17:57:23 -03:00
"dotenv" : "^17.2.3" ,
2025-11-05 11:25:50 -03:00
"express" : "^5.1.0" ,
2025-10-09 09:39:07 -03:00
"mysql2" : "^3.15.2" ,
2025-11-10 17:01:33 -03:00
"node-cron" : "^4.2.1" ,
2026-01-12 16:42:08 -03:00
"nodemailer" : "^7.0.12" ,
2025-10-07 17:57:23 -03:00
"pg" : "^8.16.3" ,
2025-11-11 15:48:44 -03:00
"pm2" : "^6.0.13" ,
2025-10-09 08:16:53 -03:00
"qs" : "^6.14.0" ,
2025-11-11 09:17:08 -03:00
"winston" : "^3.18.3" ,
"winston-daily-rotate-file" : "^5.0.0"
2025-12-01 11:39:04 -03:00
} ,
"devDependencies" : {
"cross-env" : "^10.1.0" ,
"nodemon" : "^3.1.11"
2025-10-07 11:04:29 -03:00
}
2025-10-06 13:36:15 -03:00
}