package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "name": "hue",
  3. "version": "4.4.0",
  4. "description": "Hue is an open source Web interface for analyzing data with Hadoop and Spark",
  5. "homepage": "http://gethue.com",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/cloudera/hue"
  9. },
  10. "author": "Cloudera, Inc.",
  11. "contributors": [
  12. "Romain Rigaux <romain.rigaux@cloudera.com>",
  13. "Jean-François Desjeans Gauthier <jgauthier@cloudera.com>",
  14. "Prakash Ranade <ranade@cloudera.com>",
  15. "Ying Chen <yingchen@cloudera.com>",
  16. "Weixia Xu <weixia@cloudera.com>",
  17. "Joe Heyming <jheyming@cloudera.com>",
  18. "Johan Ahlen <johan.ahlen@cloudera.com>",
  19. "Andrew Yao <andyao@cloudera.com>"
  20. ],
  21. "license": "Apache",
  22. "private": true,
  23. "engines": {
  24. "node": ">=0.10.0"
  25. },
  26. "dependencies": {
  27. "@babel/polyfill": "^7.4.0",
  28. "clipboard": "1.7.1",
  29. "d3": "5.7.0",
  30. "d3v3": "1.0.3",
  31. "dropzone": "5.5.1",
  32. "filesize": "4.0.0",
  33. "jquery": "3.3.1",
  34. "jquery-form": "4.2.2",
  35. "jquery-mousewheel": "3.1.13",
  36. "jquery-ui": "1.12.1",
  37. "jquery.cookie": "1.4.1",
  38. "knockout": "3.5.0",
  39. "knockout-sortable": "1.1.0",
  40. "knockout-switch-case": "2.1.0",
  41. "knockout.mapping": "2.4.3",
  42. "knockout.validation": "2.0.3",
  43. "leaflet": "0.7.2",
  44. "leaflet-zoombox": "0.5.1",
  45. "leaflet.heat": "0.2.0",
  46. "leaflet.markercluster": "0.5.0",
  47. "less": "3.9.0",
  48. "localforage": "1.7.3",
  49. "lodash": "4.17.11",
  50. "medium-editor": "5.23.3",
  51. "minimist": "^1.2.0",
  52. "page": "1.8.6",
  53. "plotly.js-dist": "1.45.3",
  54. "select2": "3.5.1",
  55. "selectize": "0.12.6",
  56. "selectize-plugin-clear": "0.0.3",
  57. "sprintf-js": "1.1.2"
  58. },
  59. "devDependencies": {
  60. "@babel/core": "7.2.2",
  61. "@babel/node": "7.2.2",
  62. "@babel/preset-env": "7.3.1",
  63. "@types/jasmine": "^3.3.9",
  64. "architect-build": "0.1.1",
  65. "babel-eslint": "10.0.1",
  66. "babel-jscs": "3.0.0-beta1",
  67. "babel-loader": "8.0.5",
  68. "babel-plugin-module-resolver": "^3.2.0",
  69. "clean-webpack-plugin": "1.0.1",
  70. "dryice": "0.4.11",
  71. "eslint": "5.12.1",
  72. "eslint-config-prettier": "4.0.0",
  73. "eslint-plugin-prettier": "3.0.1",
  74. "expose-loader": "0.7.5",
  75. "grunt": "^1.0.4",
  76. "grunt-contrib-less": "2.0.0",
  77. "grunt-contrib-uglify": "4.0.0",
  78. "grunt-contrib-watch": "1.1.0",
  79. "jasmine": "^3.3.1",
  80. "jsdom": "13.2.0",
  81. "karma": "^4.0.0",
  82. "karma-chrome-launcher": "^2.2.0",
  83. "karma-jasmine": "^2.0.1",
  84. "karma-jasmine-ajax": "^0.1.13",
  85. "karma-mocha-reporter": "^2.2.5",
  86. "karma-spec-reporter": "0.0.32",
  87. "karma-webpack": "4.0.0-rc.6",
  88. "lesshint": "6.3.2",
  89. "load-grunt-tasks": "4.0.0",
  90. "markdown": "0.5.0",
  91. "prettier": "1.16.1",
  92. "stylelint": "^9.10.1",
  93. "stylelint-config-standard": "^18.2.0",
  94. "webpack": "4.29.0",
  95. "webpack-bundle-analyzer": "^3.0.4",
  96. "webpack-bundle-tracker": "0.4.2-beta",
  97. "webpack-clean-obsolete-chunks": "^0.4.0",
  98. "webpack-cli": "^3.2.1"
  99. },
  100. "scripts": {
  101. "devinstall": "npm cache clean && npm install && npm prune",
  102. "webpack": "webpack --config webpack.config.js",
  103. "webpack-login": "webpack --config webpack.config.login.js",
  104. "webpack-workers": "webpack --config webpack.config.workers.js",
  105. "dev": "webpack --watch -d",
  106. "less": "./node_modules/.bin/grunt less",
  107. "less-dev": "./node_modules/.bin/grunt watch",
  108. "less-lint": "stylelint \"desktop/core/src/desktop/static/desktop/less/**/*.less\" --fix",
  109. "lint": "eslint desktop/core/src/desktop/js",
  110. "lint-debug": "npm run lint -- --debug",
  111. "lint-fix": "npm run lint -- --fix",
  112. "test": "babel-node desktop/core/src/desktop/js/spec/run.js",
  113. "test-karma": "karma start desktop/core/src/desktop/js/spec/karma.config.js --single-run"
  114. },
  115. "files": []
  116. }