Initial commit: Business Case Automation with Excel generation

This commit is contained in:
denisacirstea
2025-09-12 10:22:04 +03:00
commit 46b9c4cf28
12 changed files with 5091 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "retail-media-calculator",
"version": "1.0.0",
"description": "Retail Media Business Case Calculation Agent",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"body-parser": "^1.20.2",
"exceljs": "^4.4.0",
"express": "^4.18.2",
"fs-extra": "^11.3.1",
"node-xlsx": "^0.24.0",
"python-shell": "^5.0.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}