package.json 521 B

123456789101112131415161718192021
  1. {
  2. "private": true,
  3. "scripts": {
  4. "dev": "npm run development",
  5. "development": "mix",
  6. "watch": "mix watch",
  7. "watch-poll": "mix watch -- --watch-options-poll=1000",
  8. "hot": "mix watch --hot",
  9. "prod": "npm run production",
  10. "production": "mix --production"
  11. },
  12. "devDependencies": {
  13. "axios": "^0.21.4",
  14. "dotenv": "^10.0.0",
  15. "dotenv-expand": "^5.1.0",
  16. "laravel-mix": "^6.0.31",
  17. "laravel-mix-merge-manifest": "^2.0.0",
  18. "lodash": "^4.17.21",
  19. "postcss": "^8.3.7"
  20. }
  21. }