package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "devDependencies": {
  3. "eslint": "^7.32.0",
  4. "grunt-cli": "^1.4.3",
  5. "grunt": "~1.4.1",
  6. "grunt-contrib-copy": "^1.0.0",
  7. "grunt-contrib-concat": "~1.0.1",
  8. "grunt-contrib-cssmin": "^4.0.0",
  9. "grunt-contrib-jshint": "~3.0.0",
  10. "grunt-contrib-less": "~3.0.0",
  11. "grunt-contrib-uglify": "~5.0.1",
  12. "grunt-contrib-watch": "~1.1.0",
  13. "grunt-stylelint": "^0.16.0",
  14. "grunt-eslint": "^23.0.0",
  15. "grunt-webfont": "^1.7.2",
  16. "ionicons-npm": "^2.0.1",
  17. "jslint": "^0.12.1",
  18. "less": "^4.1.1",
  19. "less-plugin-clean-css": "^1.5.1",
  20. "stylelint": "^13.13.1",
  21. "stylelint-config-standard": "^22.0.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. "eslint": "grunt eslint",
  32. "watch": "grunt watch",
  33. "webfont": "grunt webfont",
  34. "clean": "rm -Rf node_modules package-lock.json ion.less",
  35. "stylelint": "grunt stylelint",
  36. "stylelint-fix": "grunt stylelint --fix"
  37. }
  38. }