{
  "name": "quickbooks-payment-gateway",
  "version": "2.0.0",
  "description": "Enterprise QuickBooks Payment Gateway with Secure Admin Interface",
  "main": "src/server.js",
  "scripts": {
    "install-all": "npm install && cd api && npm install && cd ../admin && npm install",
    "start": "node src/server.js",
    "start-old": "node server.js",
    "start-dev": "node scripts/start-dev.js",
    "start-api": "cd api && npm start",
    "start-admin": "cd admin && npm start",
    "start-production": "pm2 start ecosystem.config.js --env production",
    "stop": "pm2 stop ecosystem.config.js",
    "restart": "pm2 restart ecosystem.config.js",
    "logs": "pm2 logs",
    "test": "echo 'Ultra-lightweight API server - minimal testing needed'",
    "setup": "npm run install-all && npm run configure",
    "configure": "echo 'Remember to configure .env files in api/ and admin/ directories'"
  },
  "keywords": [
    "quickbooks",
    "payments",
    "api",
    "oauth",
    "admin",
    "enterprise",
    "security"
  ],
  "author": "Your Company",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/yourusername/quickbooks-payment-gateway.git"
  },
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=8.0.0"
  },
  "dependencies": {
    "dotenv": "^16.3.1",
    "express": "^4.18.2",
    "rotating-file-stream": "^3.2.7",
    "uuid": "^9.0.1"
  },
  "devDependencies": {
    "pm2": "^5.3.0"
  }
}
