package.json 3.9 KB

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