package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. "Johan Ahlen <johan.ahlen@cloudera.com>"
  13. ],
  14. "license": "Apache",
  15. "private": true,
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "dependencies": {
  20. "dropzone": "5.5.1",
  21. "filesize": "4.0.0",
  22. "jquery": "3.3.1",
  23. "jquery-ui": "1.12.1",
  24. "jquery.cookie": "1.4.1",
  25. "jquery-form": "4.2.2",
  26. "knockout": "3.4.2",
  27. "knockout.mapping": "2.4.3",
  28. "knockout-sortable": "1.1.0",
  29. "knockout-switch-case": "2.1.0",
  30. "knockout.validation": "2.0.3",
  31. "less": "3.9.0",
  32. "localforage": "1.7.3",
  33. "lodash": "4.17.11",
  34. "medium-editor": "5.23.3",
  35. "minimist": "^1.2.0",
  36. "page": "1.8.6",
  37. "selectize": "0.12.6",
  38. "selectize-plugin-clear": "0.0.3",
  39. "sprintf-js": "1.1.2"
  40. },
  41. "devDependencies": {
  42. "architect-build": "0.1.1",
  43. "@babel/core": "7.2.2",
  44. "@babel/preset-env": "7.3.1",
  45. "babel-cli": "6.26.0",
  46. "babel-eslint": "10.0.1",
  47. "babel-jscs": "3.0.0-beta1",
  48. "babel-loader": "8.0.5",
  49. "eslint": "5.12.1",
  50. "eslint-config-prettier": "4.0.0",
  51. "eslint-plugin-prettier": "3.0.1",
  52. "expose-loader": "0.7.5",
  53. "dryice": "0.4.11",
  54. "grunt": "1.0.3",
  55. "grunt-contrib-less": "2.0.0",
  56. "grunt-contrib-uglify": "4.0.0",
  57. "grunt-contrib-watch": "1.1.0",
  58. "load-grunt-tasks": "4.0.0",
  59. "prettier": "1.16.1",
  60. "webpack": "4.29.0",
  61. "webpack-bundle-tracker": "0.4.2-beta",
  62. "webpack-cli": "^3.2.1",
  63. "clean-webpack-plugin": "1.0.1"
  64. },
  65. "scripts": {
  66. "devinstall": "npm cache clean && npm install && npm prune",
  67. "less": "./node_modules/.bin/grunt less",
  68. "watch": "./node_modules/.bin/grunt watch",
  69. "webpack": "webpack --config webpack.config.js",
  70. "dev": "webpack --watch -d",
  71. "lint": "eslint desktop/core/src/desktop/js",
  72. "lint-fix": "npm run lint -- --fix"
  73. },
  74. "files": []
  75. }