package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "devDependencies": {
  3. "grunt-cli": "^1.4.3",
  4. "grunt": "~1.4.1",
  5. "grunt-contrib-copy": "^1.0.0",
  6. "grunt-contrib-concat": "~2.0.0",
  7. "grunt-contrib-cssmin": "^4.0.0",
  8. "grunt-contrib-jshint": "~3.1.1",
  9. "grunt-contrib-less": "~3.0.0",
  10. "grunt-contrib-uglify": "~5.0.1",
  11. "grunt-contrib-watch": "~1.1.0",
  12. "grunt-stylelint": "^0.16.0",
  13. "grunt-eslint": "^23.0.0",
  14. "grunt-webfont": "^1.7.2",
  15. "ionicons-npm": "^2.0.1",
  16. "eslint": "^8.0.1",
  17. "less": "^4.1.1",
  18. "less-plugin-clean-css": "^1.5.1",
  19. "stylelint": "^13.13.1",
  20. "stylelint-config-standard": "^22.0.0"
  21. },
  22. "dependencies": {
  23. "autocomplete-js": "2.7.1",
  24. "leaflet": "^1.7.1",
  25. "normalize.css": "^8.0.1"
  26. },
  27. "scripts": {
  28. "all": "npm install && grunt",
  29. "build": "grunt",
  30. "eslint": "grunt eslint",
  31. "watch": "grunt watch",
  32. "webfont": "grunt webfont",
  33. "clean": "rm -Rf node_modules package-lock.json ion.less",
  34. "stylelint": "grunt stylelint",
  35. "stylelint-fix": "grunt stylelint --fix"
  36. }
  37. }