package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. "dropzone": "5.5.1",
  29. "filesize": "4.0.0",
  30. "jquery": "3.3.1",
  31. "jquery-ui": "1.12.1",
  32. "jquery.cookie": "1.4.1",
  33. "jquery-form": "4.2.2",
  34. "knockout": "3.4.2",
  35. "knockout.mapping": "2.4.3",
  36. "knockout-sortable": "1.1.0",
  37. "knockout-switch-case": "2.1.0",
  38. "knockout.validation": "2.0.3",
  39. "less": "3.9.0",
  40. "localforage": "1.7.3",
  41. "lodash": "4.17.11",
  42. "medium-editor": "5.23.3",
  43. "minimist": "^1.2.0",
  44. "page": "1.8.6",
  45. "selectize": "0.12.6",
  46. "selectize-plugin-clear": "0.0.3",
  47. "sprintf-js": "1.1.2"
  48. },
  49. "devDependencies": {
  50. "@babel/core": "7.2.2",
  51. "@babel/preset-env": "7.3.1",
  52. "architect-build": "0.1.1",
  53. "babel-cli": "6.26.0",
  54. "babel-eslint": "10.0.1",
  55. "babel-jscs": "3.0.0-beta1",
  56. "babel-loader": "8.0.5",
  57. "clean-webpack-plugin": "1.0.1",
  58. "dryice": "0.4.11",
  59. "eslint": "5.12.1",
  60. "eslint-config-prettier": "4.0.0",
  61. "eslint-plugin-prettier": "3.0.1",
  62. "expose-loader": "0.7.5",
  63. "grunt": "1.0.3",
  64. "grunt-contrib-less": "2.0.0",
  65. "grunt-contrib-uglify": "4.0.0",
  66. "grunt-contrib-watch": "1.1.0",
  67. "load-grunt-tasks": "4.0.0",
  68. "prettier": "1.16.1",
  69. "webpack": "4.29.0",
  70. "webpack-bundle-analyzer": "^3.0.4",
  71. "webpack-bundle-tracker": "0.4.2-beta",
  72. "webpack-clean-obsolete-chunks": "^0.4.0",
  73. "webpack-cli": "^3.2.1"
  74. },
  75. "scripts": {
  76. "devinstall": "npm cache clean && npm install && npm prune",
  77. "less": "./node_modules/.bin/grunt less",
  78. "watch": "./node_modules/.bin/grunt watch",
  79. "webpack": "webpack --config webpack.config.js",
  80. "dev": "webpack --watch -d",
  81. "lint": "eslint desktop/core/src/desktop/js",
  82. "lint-fix": "npm run lint -- --fix"
  83. },
  84. "files": []
  85. }