package.json 769 B

123456789101112131415161718192021222324252627
  1. {
  2. "devDependencies": {
  3. "grunt": "~1.4.1",
  4. "grunt-cli": "^1.4.3",
  5. "grunt-contrib-concat": "~2.0.0",
  6. "grunt-contrib-copy": "^1.0.0",
  7. "grunt-contrib-jshint": "~3.1.1",
  8. "grunt-contrib-less": "~3.0.0",
  9. "grunt-contrib-uglify": "~5.0.1",
  10. "grunt-contrib-watch": "~1.1.0",
  11. "jslint": "^0.12.1",
  12. "less": "^4.1.1",
  13. "less-plugin-clean-css": "^1.5.1"
  14. },
  15. "dependencies": {
  16. "bootstrap": "^3.4.1",
  17. "corejs-typeahead": "^1.3.1",
  18. "jquery": "^3.6.0",
  19. "leaflet": "^1.7.1"
  20. },
  21. "scripts": {
  22. "all": "npm install && grunt",
  23. "build": "grunt",
  24. "watch": "grunt watch",
  25. "clean": "rm -Rf node_modules package-lock.json"
  26. }
  27. }