This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
forked from Xantios/cockpit-docker
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
89 lines (89 loc) · 2.79 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
{
"name": "CockpitDevelopmentDependencies",
"description": "Cockpit isn't a Node package, these are devel time deps, not needed to build tarball either",
"private": true,
"dependencies": {
"@patternfly/patternfly": "2.65.0",
"@patternfly/react-console": "2.0.13",
"@patternfly/react-core": "3.134.2",
"@patternfly/react-table": "2.24.41",
"@redhat/redhat-font": "git+https://github.com/RedHatOfficial/RedHatFont.git#2.2.0",
"bootstrap": "3.4.1",
"bootstrap-datepicker": "1.9.0",
"bootstrap-select": "1.13.12",
"c3": "0.4.24",
"d3": "3.5.17",
"deep-equal": "1.1.1",
"jquery": "3.5.0",
"jquery-flot": "0.8.3",
"js-sha1": "0.6.0",
"json-stable-stringify-without-jsonify": "1.0.1",
"moment": "2.29.2",
"mustache": "3.2.1",
"patternfly": "3.59.4",
"patternfly-bootstrap-combobox": "1.1.7",
"patternfly-react": "2.39.13",
"prop-types": "15.7.2",
"qunit": "2.9.3",
"qunit-tap": "1.5.1",
"react": "16.12.0",
"react-bootstrap": "0.33.1",
"react-dom": "16.12.0",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"remarkable": "2.0.0",
"remove-files-webpack-plugin": "^1.4.5",
"throttle-debounce": "2.1.0",
"uuid": "3.4.0",
"xterm": "4.4.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"axe-core": "^3.3.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.4",
"chrome-remote-interface": "^0.28.0",
"clean-css-cli": "^4.2.1",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^3.2.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.1.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^3.2.0",
"htmlparser": "^1.7.7",
"imports-loader": "^0.6.5",
"jed": "^1.1.0",
"less": "^3.0.1",
"less-loader": "^4.0.6",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^7.0.0",
"po2json": "^1.0.0-alpha",
"raw-loader": "^0.5.1",
"sass-loader": "^8.0.2",
"sass-resources-loader": "^2.0.1",
"sizzle": "^2.1.0",
"stdio": "^0.2.7",
"strict-loader": "^1.1.0",
"style-loader": "^0.13.1",
"uglify-js": "^3.4.9",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"scripts": {
"eslint": "eslint --ext .js --ext .jsx pkg/ src/",
"eslint:fix": "eslint --fix --ext .js --ext .jsx pkg/ src/",
"build": "echo Building && npm install ; webpack"
}
}