package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. "epub": "^1.1.0",
  33. "filesize": "4.0.0",
  34. "jquery": "^3.4.1",
  35. "jquery-form": "4.2.2",
  36. "jquery-mousewheel": "3.1.13",
  37. "jquery-ui": "1.12.1",
  38. "jquery.cookie": "1.4.1",
  39. "knockout": "3.4.2",
  40. "knockout-sortable": "1.1.0",
  41. "knockout-switch-case": "2.1.0",
  42. "knockout.mapping": "2.4.3",
  43. "knockout.validation": "2.0.3",
  44. "less": "3.9.0",
  45. "libxmljs": "^0.19.5",
  46. "localforage": "1.7.3",
  47. "lodash": "4.17.13",
  48. "medium-editor": "5.23.3",
  49. "minimist": "^1.2.0",
  50. "page": "1.8.6",
  51. "plotly.js-dist": "1.45.3",
  52. "removeNPMAbsolutePaths": "^1.0.4",
  53. "select2": "3.5.1",
  54. "selectize": "0.12.6",
  55. "selectize-plugin-clear": "0.0.3",
  56. "sprintf-js": "1.1.2"
  57. },
  58. "devDependencies": {
  59. "@babel/core": "7.2.2",
  60. "@babel/node": "7.2.2",
  61. "@babel/plugin-syntax-dynamic-import": "7.2.0",
  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-jasmine": "^2.10.1",
  74. "eslint-plugin-prettier": "3.0.1",
  75. "expose-loader": "0.7.5",
  76. "grunt": "^1.0.4",
  77. "grunt-contrib-less": "2.0.0",
  78. "grunt-contrib-uglify": "4.0.0",
  79. "grunt-contrib-watch": "1.1.0",
  80. "jasmine": "^3.3.1",
  81. "jsdom": "13.2.0",
  82. "karma": "^4.0.0",
  83. "karma-chrome-launcher": "^2.2.0",
  84. "karma-jasmine": "^2.0.1",
  85. "karma-jasmine-ajax": "^0.1.13",
  86. "karma-mocha-reporter": "^2.2.5",
  87. "karma-spec-reporter": "0.0.32",
  88. "karma-webpack": "4.0.0-rc.6",
  89. "lesshint": "6.3.2",
  90. "load-grunt-tasks": "4.0.0",
  91. "markdown": "0.5.0",
  92. "prettier": "1.16.1",
  93. "stylelint": "^9.10.1",
  94. "stylelint-config-standard": "^18.2.0",
  95. "webpack": "4.35.2",
  96. "webpack-bundle-analyzer": "^3.3.2",
  97. "webpack-bundle-tracker": "0.4.2-beta",
  98. "webpack-clean-obsolete-chunks": "^0.4.0",
  99. "webpack-cli": "^3.3.5"
  100. },
  101. "scripts": {
  102. "devinstall": "npm cache clean && npm install && npm prune",
  103. "webpack": "webpack --config webpack.config.js",
  104. "webpack-login": "webpack --config webpack.config.login.js",
  105. "webpack-workers": "webpack --config webpack.config.workers.js",
  106. "dev": "webpack --watch -d",
  107. "dev-workers": "webpack --config webpack.config.workers.js --watch -d",
  108. "less": "./node_modules/.bin/grunt less",
  109. "less-dev": "./node_modules/.bin/grunt watch",
  110. "less-lint": "stylelint \"desktop/core/src/desktop/static/desktop/less/**/*.less\" --fix",
  111. "lint": "eslint desktop/core/src/desktop/js tools/sql-docs tools/jison",
  112. "lint-debug": "npm run lint -- --debug",
  113. "lint-fix": "npm run lint -- --fix",
  114. "test": "babel-node desktop/core/src/desktop/js/spec/run.js",
  115. "test-karma": "karma start desktop/core/src/desktop/js/spec/karma.config.js --single-run"
  116. },
  117. "files": []
  118. }