package.json 1008 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "inventorymanagement",
  3. "version": "0.1.0",
  4. "description": "Inventory management application for restaurants",
  5. "main": "app.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "start": "node app.js",
  9. "dev": "nodemon app.js --ext js,css,json --ignore ./views/dashboardPage/bundle.js --ignore ./views/dashboardPage/bundle.css"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/The-Subline/Inventory-Management.git"
  14. },
  15. "author": "Lee Morgan",
  16. "license": "ISC",
  17. "bugs": {
  18. "url": "https://github.com/The-Subline/Inventory-Management/issues"
  19. },
  20. "homepage": "https://github.com/The-Subline/Inventory-Management#readme",
  21. "dependencies": {
  22. "axios": "^0.21.1",
  23. "bcryptjs": "^2.4.3",
  24. "compression": "^1.7.4",
  25. "cookie-session": "^1.4.0",
  26. "cssmerger": "^1.1.0",
  27. "ejs": "^2.7.4",
  28. "esbuild": "^0.11.20",
  29. "express": "^4.17.1",
  30. "express-fileupload": "^1.2.1",
  31. "mongoose": "^5.12.4"
  32. }
  33. }