package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "buildDashboard": "watchify ./views/dashboardPage/js/dashboard.js -o ./views/dashboardPage/bundle.js",
  10. "nodemon": "nodemon app.js",
  11. "dev": "npm run buildDashboard | npm run nodemon"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/The-Subline/Inventory-Management.git"
  16. },
  17. "author": "Lee Morgan",
  18. "license": "ISC",
  19. "bugs": {
  20. "url": "https://github.com/The-Subline/Inventory-Management/issues"
  21. },
  22. "homepage": "https://github.com/The-Subline/Inventory-Management#readme",
  23. "dependencies": {
  24. "axios": "^0.19.2",
  25. "bcryptjs": "^2.4.3",
  26. "compression": "^1.7.4",
  27. "cookie-session": "^1.4.0",
  28. "ejs": "^2.7.4",
  29. "express": "^4.17.1",
  30. "mailgun-js": "^0.22.0",
  31. "mongoose": "^5.9.26"
  32. },
  33. "devDependencies": {
  34. "browserify": "^16.5.1",
  35. "tinyify": "^3.0.0",
  36. "watchify": "^3.11.1"
  37. }
  38. }