package.json 614 B

123456789101112131415161718192021222324
  1. {
  2. "devDependencies": {
  3. "grunt": "^1.3.0",
  4. "grunt-cli": "^1.3.2",
  5. "grunt-contrib-concat": "~1.0.1",
  6. "grunt-contrib-copy": "^1.0.0",
  7. "grunt-contrib-jshint": "~3.0.0",
  8. "grunt-contrib-less": "~3.0.0",
  9. "grunt-contrib-uglify": "~5.0.0",
  10. "grunt-contrib-watch": "~1.1.0"
  11. },
  12. "scripts": {
  13. "build": "npm install && grunt",
  14. "start": "grunt watch",
  15. "test": "grunt"
  16. },
  17. "dependencies": {
  18. "bootstrap": "^3.4.1",
  19. "corejs-typeahead": "^1.3.1",
  20. "jquery": "^3.6.0",
  21. "leaflet": "^1.7.1"
  22. }
  23. }