package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. "filesize": "4.0.0",
  21. "jquery": "3.3.1",
  22. "jquery-ui": "1.12.1",
  23. "jquery.cookie": "1.4.1",
  24. "jquery-form": "4.2.2",
  25. "knockout": "3.4.2",
  26. "knockout.mapping": "2.4.3",
  27. "knockout-sortable": "1.1.0",
  28. "knockout-switch-case": "2.1.0",
  29. "knockout.validation": "2.0.3",
  30. "less": "3.9.0",
  31. "localforage": "1.7.3",
  32. "lodash": "4.17.11",
  33. "minimist": "^1.2.0",
  34. "page": "1.8.6",
  35. "selectize": "0.12.6"
  36. },
  37. "devDependencies": {
  38. "@babel/core": "7.2.2",
  39. "architect-build": "0.1.1",
  40. "@babel/preset-env": "7.3.1",
  41. "babel-cli": "6.26.0",
  42. "babel-eslint": "10.0.1",
  43. "babel-jscs": "3.0.0-beta1",
  44. "babel-loader": "8.0.5",
  45. "eslint": "5.12.1",
  46. "eslint-config-prettier": "4.0.0",
  47. "eslint-plugin-prettier": "3.0.1",
  48. "expose-loader": "0.7.5",
  49. "dryice": "0.4.11",
  50. "grunt": "1.0.3",
  51. "grunt-contrib-less": "2.0.0",
  52. "grunt-contrib-uglify": "4.0.0",
  53. "grunt-contrib-watch": "1.1.0",
  54. "load-grunt-tasks": "4.0.0",
  55. "prettier": "1.16.1",
  56. "webpack": "4.29.0",
  57. "webpack-bundle-tracker": "0.4.2-beta",
  58. "webpack-cli": "^3.2.1",
  59. "webpack-shell-plugin": "^0.5.0"
  60. },
  61. "scripts": {
  62. "devinstall": "npm cache clean && npm install && npm prune",
  63. "less": "./node_modules/.bin/grunt less",
  64. "watch": "./node_modules/.bin/grunt watch",
  65. "webpack": "webpack --config webpack.config.js",
  66. "dev": "webpack --watch -d",
  67. "lint": "cd desktop/core/src/desktop/static/desktop/js/; eslint assist autocomplete document",
  68. "lint-fix": "npm run lint -- --fix"
  69. },
  70. "files": []
  71. }