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. "regenerator-runtime": "^0.13.3",
  28. "core-js": "^3.4.2",
  29. "clipboard": "1.7.1",
  30. "d3": "5.7.0",
  31. "d3v3": "1.0.3",
  32. "dropzone": "5.5.1",
  33. "epub": "^1.1.0",
  34. "filesize": "4.0.0",
  35. "jquery": "^3.4.1",
  36. "jquery-form": "4.2.2",
  37. "jquery-mousewheel": "3.1.13",
  38. "jquery-ui": "1.12.1",
  39. "jquery.cookie": "1.4.1",
  40. "knockout": "3.5.1",
  41. "knockout-sortable": "1.2.0",
  42. "knockout-switch-case": "2.1.0",
  43. "knockout.mapping": "2.4.3",
  44. "knockout.validation": "2.0.3",
  45. "less": "^3.10.3",
  46. "libxmljs": "^0.19.5",
  47. "localforage": "1.7.3",
  48. "lodash": "4.17.13",
  49. "medium-editor": "5.23.3",
  50. "minimist": "^1.2.0",
  51. "page": "1.8.6",
  52. "plotly.js-dist": "1.45.3",
  53. "removeNPMAbsolutePaths": "^1.0.4",
  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.7.4",
  61. "@babel/node": "7.7.4",
  62. "@babel/plugin-syntax-dynamic-import": "7.7.4",
  63. "@babel/preset-env": "7.7.4",
  64. "@types/jest": "^24.0.23",
  65. "architect-build": "0.1.1",
  66. "babel-eslint": "10.0.3",
  67. "babel-jest": "^25.0.0",
  68. "babel-jscs": "3.0.0-beta1",
  69. "babel-loader": "8.0.6",
  70. "babel-plugin-module-resolver": "^3.2.0",
  71. "clean-webpack-plugin": "1.0.1",
  72. "dryice": "0.4.11",
  73. "eslint": "5.12.1",
  74. "eslint-config-prettier": "4.0.0",
  75. "eslint-plugin-jest": "^23.0.4",
  76. "eslint-plugin-prettier": "3.0.1",
  77. "expose-loader": "0.7.5",
  78. "grunt": "^1.0.4",
  79. "grunt-contrib-less": "2.0.0",
  80. "grunt-contrib-uglify": "4.0.0",
  81. "grunt-contrib-watch": "1.1.0",
  82. "jest": "^25.0.0",
  83. "jest-environment-jsdom-fourteen": "^0.1.0",
  84. "jsdom": "13.2.0",
  85. "lesshint": "^6.3.7",
  86. "load-grunt-tasks": "4.0.0",
  87. "markdown": "0.5.0",
  88. "prettier": "1.16.1",
  89. "stylelint": "^12.0.0",
  90. "stylelint-config-standard": "^19.0.0",
  91. "webpack": "4.41.2",
  92. "webpack-bundle-analyzer": "^3.6.0",
  93. "webpack-bundle-tracker": "^0.4.3",
  94. "webpack-clean-obsolete-chunks": "^0.4.0",
  95. "webpack-cli": "^3.3.10"
  96. },
  97. "scripts": {
  98. "devinstall": "npm cache clean && npm install && npm prune",
  99. "webpack": "webpack --config webpack.config.js",
  100. "webpack-login": "webpack --config webpack.config.login.js",
  101. "webpack-workers": "webpack --config webpack.config.workers.js",
  102. "dev": "webpack --watch -d",
  103. "dev-workers": "webpack --config webpack.config.workers.js --watch -d",
  104. "less": "./node_modules/.bin/grunt less",
  105. "less-dev": "./node_modules/.bin/grunt watch",
  106. "less-lint": "stylelint \"desktop/core/src/desktop/static/desktop/less/**/*.less\" --fix",
  107. "lint": "eslint desktop/core/src/desktop/js tools/sql-docs tools/jison",
  108. "lint-debug": "npm run lint -- --debug",
  109. "lint-fix": "npm run lint -- --fix",
  110. "test": "jest",
  111. "test-coverage": "jest --coverage",
  112. "test-dev": "jest --watch",
  113. "test-clearCache": "jest --clearCache"
  114. },
  115. "files": []
  116. }