{
  "name": "demoServices",
  "version": "1.0.0",
  "description": "A simple Node.js service using Express, dotenv, and winston for logging.",
  "main": "app.js",
  "packageManager": "yarn@4.3.1",
  "scripts": {
    "dev": "nodemon app.js", 
    "start": "NODE_ENV=production node app.js",  
    "test": "echo \"No tests specified\" && exit 0"  
  },
  "dependencies": {
    "dotenv": "^16.4.7",
    "express": "^4.21.2",
    "winston": "^3.17.0"
  },
  "devDependencies": {
    "nodemon": "^3.1.9"
  },
  "engines": {
    "node": ">=14.0.0",  
    "yarn": ">=4.3.1"  
  },
  "nodemonConfig": {
    "ignore": ["node_modules", "public"],  
    "ext": "js,json",  
    "watch": ["app.js", "src/**/*"]  
  },
  "author": "Your Name",  
  "license": "MIT",
  "type": "module"  
}
