package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. "sprintf-js": "1.1.2"
  39. },
  40. "devDependencies": {
  41. "@babel/core": "7.2.2",
  42. "architect-build": "0.1.1",
  43. "@babel/preset-env": "7.3.1",
  44. "babel-cli": "6.26.0",
  45. "babel-eslint": "10.0.1",
  46. "babel-jscs": "3.0.0-beta1",
  47. "babel-loader": "8.0.5",
  48. "eslint": "5.12.1",
  49. "eslint-config-prettier": "4.0.0",
  50. "eslint-plugin-prettier": "3.0.1",
  51. "expose-loader": "0.7.5",
  52. "dryice": "0.4.11",
  53. "grunt": "1.0.3",
  54. "grunt-contrib-less": "2.0.0",
  55. "grunt-contrib-uglify": "4.0.0",
  56. "grunt-contrib-watch": "1.1.0",
  57. "load-grunt-tasks": "4.0.0",
  58. "prettier": "1.16.1",
  59. "webpack": "4.29.0",
  60. "webpack-bundle-tracker": "0.4.2-beta",
  61. "webpack-cli": "^3.2.1",
  62. "clean-webpack-plugin": "1.0.1"
  63. },
  64. "scripts": {
  65. "devinstall": "npm cache clean && npm install && npm prune",
  66. "less": "./node_modules/.bin/grunt less",
  67. "watch": "./node_modules/.bin/grunt watch",
  68. "webpack": "webpack --config webpack.config.js",
  69. "dev": "webpack --watch -d",
  70. "lint": "eslint desktop/core/src/desktop/js",
  71. "lint-fix": "npm run lint -- --fix"
  72. },
  73. "files": []
  74. }