package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. "build": "watchify ./views/dashboardPage/js/dashboard.js -o ./views/dashboardPage/bundle.js",
  10. "nodemon": "nodemon app.js",
  11. "dev": "npm run build | 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. "mongoose": "^5.9.26"
  31. },
  32. "devDependencies": {
  33. "browserify": "^16.5.1",
  34. "tinyify": "^3.0.0",
  35. "watchify": "^3.11.1"
  36. }
  37. }