package.json 988 B

1234567891011121314151617181920212223242526272829303132333435
  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": "~1.0.1",
  7. "grunt-contrib-cssmin": "^4.0.0",
  8. "grunt-contrib-jshint": "~3.0.0",
  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-webfont": "^1.7.2",
  14. "ionicons-npm": "^2.0.1",
  15. "jslint": "^0.12.1",
  16. "less": "^4.1.1",
  17. "less-plugin-clean-css": "^1.5.1",
  18. "stylelint": "^13.13.1",
  19. "stylelint-config-standard": "^22.0.0"
  20. },
  21. "dependencies": {
  22. "autocomplete-js": "2.7.1",
  23. "leaflet": "^1.7.1",
  24. "normalize.css": "^8.0.1"
  25. },
  26. "scripts": {
  27. "all": "npm install && grunt",
  28. "build": "grunt",
  29. "watch": "grunt watch",
  30. "webfont": "grunt webfont",
  31. "clean": "rm -Rf node_modules package-lock.json ion.less",
  32. "stylelint": "grunt stylelint",
  33. "stylelint-fix": "grunt stylelint --fix"
  34. }
  35. }