discount/package.json
2026-07-01 13:27:52 -04:00

23 lines
No EOL
603 B
JSON

{
"name": "discountv3",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "node --env-file=.env.development index.js",
"start": "node index.js",
"docker:build": "docker build -t discountbot:latest .",
"docker:run": "docker run -p 1977:1977 --env-file .env.production discountbot:latest"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"body-parser": "^2.2.0",
"dotenv": "^17.4.2",
"express": "^5.1.0",
"node-cron": "^4.2.1",
"node-fetch": "^3.3.2",
"webex-node-bot-framework": "^2.5.0"
}
}