package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. "clipboard": "1.7.1",
  28. "d3v3": "1.0.3",
  29. "d3": "5.7.0",
  30. "dropzone": "5.5.1",
  31. "filesize": "4.0.0",
  32. "jquery": "3.3.1",
  33. "jquery-ui": "1.12.1",
  34. "jquery.cookie": "1.4.1",
  35. "jquery-form": "4.2.2",
  36. "jquery-mousewheel": "3.1.13",
  37. "knockout": "3.4.2",
  38. "knockout.mapping": "2.4.3",
  39. "knockout-sortable": "1.1.0",
  40. "knockout-switch-case": "2.1.0",
  41. "knockout.validation": "2.0.3",
  42. "less": "3.9.0",
  43. "localforage": "1.7.3",
  44. "lodash": "4.17.11",
  45. "medium-editor": "5.23.3",
  46. "minimist": "^1.2.0",
  47. "page": "1.8.6",
  48. "select2": "3.5.1",
  49. "selectize": "0.12.6",
  50. "selectize-plugin-clear": "0.0.3",
  51. "sprintf-js": "1.1.2"
  52. },
  53. "devDependencies": {
  54. "@babel/core": "7.2.2",
  55. "@babel/node": "7.2.2",
  56. "@babel/preset-env": "7.3.1",
  57. "@types/jasmine": "^3.3.9",
  58. "architect-build": "0.1.1",
  59. "babel-eslint": "10.0.1",
  60. "babel-jscs": "3.0.0-beta1",
  61. "babel-loader": "8.0.5",
  62. "babel-plugin-module-resolver": "^3.2.0",
  63. "clean-webpack-plugin": "1.0.1",
  64. "dryice": "0.4.11",
  65. "eslint": "5.12.1",
  66. "eslint-config-prettier": "4.0.0",
  67. "eslint-plugin-prettier": "3.0.1",
  68. "expose-loader": "0.7.5",
  69. "grunt": "1.0.3",
  70. "grunt-contrib-less": "2.0.0",
  71. "grunt-contrib-uglify": "4.0.0",
  72. "grunt-contrib-watch": "1.1.0",
  73. "jasmine": "^3.3.1",
  74. "jsdom": "13.2.0",
  75. "json-loader": "0.5.7",
  76. "karma": "^4.0.0",
  77. "karma-chrome-launcher": "^2.2.0",
  78. "karma-jasmine": "^2.0.1",
  79. "karma-jasmine-ajax": "^0.1.13",
  80. "karma-mocha-reporter": "^2.2.5",
  81. "karma-spec-reporter": "0.0.32",
  82. "karma-webpack": "4.0.0-rc.6",
  83. "lesshint": "6.3.2",
  84. "markdown": "0.5.0",
  85. "load-grunt-tasks": "4.0.0",
  86. "prettier": "1.16.1",
  87. "stylelint": "^9.10.1",
  88. "stylelint-config-standard": "^18.2.0",
  89. "webpack": "4.29.0",
  90. "webpack-bundle-analyzer": "^3.0.4",
  91. "webpack-bundle-tracker": "0.4.2-beta",
  92. "webpack-clean-obsolete-chunks": "^0.4.0",
  93. "webpack-cli": "^3.2.1"
  94. },
  95. "scripts": {
  96. "devinstall": "npm cache clean && npm install && npm prune",
  97. "webpack": "webpack --config webpack.config.js",
  98. "webpack-login": "webpack --config webpack.config.login.js",
  99. "webpack-workers": "webpack --config webpack.config.workers.js",
  100. "dev": "webpack --watch -d",
  101. "less": "./node_modules/.bin/grunt less",
  102. "less-dev": "./node_modules/.bin/grunt watch",
  103. "less-lint": "stylelint \"desktop/core/src/desktop/static/desktop/less/**/*.less\" --fix",
  104. "lint": "eslint desktop/core/src/desktop/js",
  105. "lint-debug": "npm run lint -- --debug",
  106. "lint-fix": "npm run lint -- --fix",
  107. "test": "babel-node desktop/core/src/desktop/js/spec/run.js",
  108. "test-karma": "karma start desktop/core/src/desktop/js/spec/karma.config.js --single-run"
  109. },
  110. "files": []
  111. }