forked from kryton/hue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.89 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
123
124
{
"name": "hue",
"version": "4.6.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"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"number-leading-zero": null,
"no-descending-specificity": null
}
},
"dependencies": {
"regenerator-runtime": "^0.13.3",
"core-js": "^3.4.2",
"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.5.1",
"knockout-sortable": "1.2.0",
"knockout-switch-case": "2.1.0",
"knockout.mapping": "2.4.3",
"knockout.validation": "2.0.3",
"less": "^3.10.3",
"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.7.4",
"@babel/node": "7.7.4",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/preset-env": "7.7.4",
"@types/jest": "^24.0.23",
"architect-build": "0.1.1",
"babel-eslint": "10.0.3",
"babel-jest": "^25.0.0",
"babel-jscs": "3.0.0-beta1",
"babel-loader": "8.0.6",
"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-jest": "^23.0.4",
"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",
"jest": "^25.0.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jsdom": "13.2.0",
"lesshint": "^6.3.7",
"load-grunt-tasks": "4.0.0",
"markdown": "0.5.0",
"prettier": "1.16.1",
"stylelint": "^12.0.0",
"stylelint-config-standard": "^19.0.0",
"webpack": "4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-bundle-tracker": "^0.4.3",
"webpack-clean-obsolete-chunks": "^0.4.0",
"webpack-cli": "^3.3.10"
},
"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\"",
"less-lint-fix": "npm run less-lint -- --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": "jest",
"test-coverage": "jest --coverage",
"test-dev": "jest --watch",
"test-clearCache": "jest --clearCache"
},
"files": []
}