forked from kryton/hue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.97 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "hue",
"version": "4.4.0",
"description": "Hue is an open source Web interface for analyzing data with Hadoop and Spark",
"homepage": "http://gethue.com",
"repository": {
"type": "git",
"url": "https://github.com/cloudera/hue"
},
"author": "Cloudera, Inc.",
"contributors": [
"Romain Rigaux <[email protected]>",
"Jean-François Desjeans Gauthier <[email protected]>",
"Prakash Ranade <[email protected]>",
"Ying Chen <[email protected]>",
"Weixia Xu <[email protected]>",
"Joe Heyming <[email protected]>",
"Johan Ahlen <[email protected]>",
"Andrew Yao <[email protected]>"
],
"license": "Apache",
"private": true,
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.0",
"clipboard": "1.7.1",
"d3": "5.7.0",
"d3v3": "1.0.3",
"dropzone": "5.5.1",
"epub": "^1.1.0",
"filesize": "4.0.0",
"jquery": "^3.4.1",
"jquery-form": "4.2.2",
"jquery-mousewheel": "3.1.13",
"jquery-ui": "1.12.1",
"jquery.cookie": "1.4.1",
"knockout": "3.4.2",
"knockout-sortable": "1.1.0",
"knockout-switch-case": "2.1.0",
"knockout.mapping": "2.4.3",
"knockout.validation": "2.0.3",
"leaflet": "0.7.2",
"leaflet-zoombox": "0.5.1",
"leaflet.heat": "0.2.0",
"leaflet.markercluster": "0.5.0",
"less": "3.9.0",
"libxmljs": "^0.19.5",
"localforage": "1.7.3",
"lodash": "4.17.13",
"medium-editor": "5.23.3",
"minimist": "^1.2.0",
"page": "1.8.6",
"plotly.js-dist": "1.45.3",
"removeNPMAbsolutePaths": "^1.0.4",
"select2": "3.5.1",
"selectize": "0.12.6",
"selectize-plugin-clear": "0.0.3",
"sprintf-js": "1.1.2"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/node": "7.2.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.3.1",
"@types/jasmine": "^3.3.9",
"architect-build": "0.1.1",
"babel-eslint": "10.0.1",
"babel-jscs": "3.0.0-beta1",
"babel-loader": "8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"clean-webpack-plugin": "1.0.1",
"dryice": "0.4.11",
"eslint": "5.12.1",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-prettier": "3.0.1",
"expose-loader": "0.7.5",
"grunt": "^1.0.4",
"grunt-contrib-less": "2.0.0",
"grunt-contrib-uglify": "4.0.0",
"grunt-contrib-watch": "1.1.0",
"jasmine": "^3.3.1",
"jsdom": "13.2.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-ajax": "^0.1.13",
"karma-mocha-reporter": "^2.2.5",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "4.0.0-rc.6",
"lesshint": "6.3.2",
"load-grunt-tasks": "4.0.0",
"markdown": "0.5.0",
"prettier": "1.16.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"webpack": "4.35.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-bundle-tracker": "0.4.2-beta",
"webpack-clean-obsolete-chunks": "^0.4.0",
"webpack-cli": "^3.3.5"
},
"scripts": {
"devinstall": "npm cache clean && npm install && npm prune",
"webpack": "webpack --config webpack.config.js",
"webpack-login": "webpack --config webpack.config.login.js",
"webpack-workers": "webpack --config webpack.config.workers.js",
"dev": "webpack --watch -d",
"dev-workers": "webpack --config webpack.config.workers.js --watch -d",
"less": "./node_modules/.bin/grunt less",
"less-dev": "./node_modules/.bin/grunt watch",
"less-lint": "stylelint \"desktop/core/src/desktop/static/desktop/less/**/*.less\" --fix",
"lint": "eslint desktop/core/src/desktop/js tools/sql-docs tools/jison",
"lint-debug": "npm run lint -- --debug",
"lint-fix": "npm run lint -- --fix",
"test": "babel-node desktop/core/src/desktop/js/spec/run.js",
"test-karma": "karma start desktop/core/src/desktop/js/spec/karma.config.js --single-run"
},
"files": []
}