{
  "name": "file-processing-app",
  "version": "1.0.0",
  "description": "Node.js file processing application with domain support and real-time updates",
  "main": "server.js",
  "scripts": {
    "start": "node server.js",
    "dev": "nodemon server.js",
    "prod": "NODE_ENV=production node server.js",
    "ssl:dev": "bash scripts/generate-dev-ssl.sh",
    "ssl:prod": "bash scripts/ssl-setup.sh",
    "health": "bash scripts/health-check.sh",
    "test": "jest",
    "lint": "eslint .",
    "format": "prettier --write ."
  },
  "dependencies": {
    "compression": "^1.8.1",
    "cors": "^2.8.5",
    "dotenv": "^16.6.1",
    "express": "^4.21.2",
    "express-rate-limit": "^7.5.1",
    "helmet": "^7.2.0",
    "multer": "^1.4.5-lts.1",
    "socket.io": "^4.8.1"
  },
  "devDependencies": {
    "eslint": "^8.55.0",
    "jest": "^29.7.0",
    "nodemon": "^3.0.2",
    "prettier": "^3.1.1",
    "supertest": "^6.3.3"
  },
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=8.0.0"
  },
  "keywords": [
    "nodejs",
    "file-processing",
    "upload",
    "websockets",
    "real-time",
    "domain",
    "production"
  ],
  "author": "Low CL (coffee)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/yourusername/file-processing-app.git"
  },
  "bugs": {
    "url": "https://github.com/yourusername/file-processing-app/issues"
  },
  "homepage": "https://yourdomain.com"
}
