Files
shopify-ai-backup/chat/package.json
Developer 2a7971eda1 Security fixes: Remove PAT, add idempotency, fix admin auth
- Remove exposed GitHub PAT from git remote URL
- Remove admin password plaintext fallback (bcrypt only)
- Add webhook idempotency protection to prevent duplicate payments
- Fix webhook error handling to return 500 on errors (enables retry)
- Upgrade archiver to v7 to fix npm vulnerabilities
- Add production environment validation for critical secrets
- Add comprehensive security review documentation
2026-02-20 21:51:45 +00:00

27 lines
555 B
JSON

{
"name": "chat",
"version": "1.0.0",
"description": "",
"main": "agents.js",
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"adm-zip": "^0.5.16",
"archiver": "^7.0.1",
"bcrypt": "^6.0.0",
"jsonwebtoken": "^9.0.2",
"pdfkit": "^0.17.2",
"sharp": "^0.33.5",
"better-sqlite3": "^11.8.1",
"multer": "^2.0.2"
}
}