package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "devDependencies": {
  3. "ejs": "^3.1.10",
  4. "eslint": "^9.18.0",
  5. "grunt": "^1.6.1",
  6. "grunt-contrib-copy": "^1.0.0",
  7. "grunt-contrib-cssmin": "^5.0.0",
  8. "grunt-contrib-less": "^3.0.0",
  9. "grunt-contrib-uglify": "^5.2.2",
  10. "grunt-contrib-watch": "^1.1.0",
  11. "grunt-eslint": "^25.0.0",
  12. "grunt-image": "^6.4.0",
  13. "grunt-stylelint": "^0.20.1",
  14. "grunt-xmlmin": "^0.1.8",
  15. "ionicons": "^7.4.0",
  16. "less": "^4.2.2",
  17. "sharp": "^0.33.5",
  18. "stylelint": "^16.12.0",
  19. "stylelint-config-standard": "^37.0.0",
  20. "stylelint-config-standard-less": "^3.0.1",
  21. "svgo": "^3.3.2"
  22. },
  23. "dependencies": {
  24. "autocomplete-js": "^2.7.1",
  25. "leaflet": "^1.9.4",
  26. "normalize.css": "^8.0.1",
  27. "swiped-events": "^1.2.0"
  28. },
  29. "scripts": {
  30. "all": "npm install && grunt",
  31. "build": "grunt",
  32. "clean": "rm -Rf node_modules",
  33. "eslint": "grunt eslint",
  34. "eslint-fix": "grunt eslint --fix",
  35. "fix": "grunt test --fix",
  36. "stylelint": "grunt stylelint",
  37. "stylelint-fix": "grunt stylelint --fix",
  38. "test": "grunt test",
  39. "watch": "grunt watch --fix"
  40. }
  41. }