package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "devDependencies": {
  3. "eslint": "^8.11.0",
  4. "grunt": "~1.4.1",
  5. "grunt-contrib-copy": "^1.0.0",
  6. "grunt-contrib-cssmin": "^4.0.0",
  7. "grunt-contrib-less": "~3.0.0",
  8. "grunt-contrib-uglify": "~5.0.1",
  9. "grunt-xmlmin": "~0.1.8",
  10. "grunt-contrib-watch": "~1.1.0",
  11. "grunt-eslint": "^24.0.0",
  12. "grunt-stylelint": "^0.16.0",
  13. "grunt-image": "^6.4.0",
  14. "ionicons": "^6.0.1",
  15. "less": "^4.1.2",
  16. "less-plugin-clean-css": "^1.5.1",
  17. "sharp": "^0.30.3",
  18. "stylelint": "^13.13.1",
  19. "stylelint-config-standard": "^22.0.0",
  20. "ejs": "^3.1.6",
  21. "svgo": "^2.8.0"
  22. },
  23. "dependencies": {
  24. "autocomplete-js": "2.7.1",
  25. "leaflet": "^1.7.1",
  26. "normalize.css": "^8.0.1"
  27. },
  28. "scripts": {
  29. "all": "npm install && grunt",
  30. "build": "grunt",
  31. "test": "grunt test",
  32. "eslint": "grunt eslint",
  33. "eslint-fix": "grunt eslint --fix",
  34. "watch": "grunt watch",
  35. "webfont": "grunt webfont",
  36. "clean": "rm -Rf node_modules package-lock.json ion.less",
  37. "stylelint": "grunt stylelint",
  38. "stylelint-fix": "grunt stylelint --fix"
  39. }
  40. }