package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.21.1",
  25. "bcryptjs": "^2.4.3",
  26. "compression": "^1.7.4",
  27. "cookie-session": "^1.4.0",
  28. "cssmerger": "^1.0.1",
  29. "ejs": "^2.7.4",
  30. "express": "^4.17.1",
  31. "mailgun-js": "^0.6.7",
  32. "mongoose": "^5.12.4",
  33. "multer": "^1.4.2",
  34. "xlsx": "^0.16.8"
  35. },
  36. "devDependencies": {
  37. "browserify": "^16.5.1",
  38. "tinyify": "^3.0.0",
  39. "watchify": "^3.11.1"
  40. }
  41. }