-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 2.16 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
{
"name": "subscription-manager",
"version": "0.1.0",
"description": "a plugin for cockpit to manage subscriptions",
"type": "module",
"main": "index.js",
"repository": "[email protected]:candlepin/subscription-manager-cockpit.git",
"author": "",
"license": "LGPL-2.1",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"clean": "cd ./dist && rm -rf *",
"eslint": "eslint --ext .jsx --ext .js src/ lib/",
"eslint:fix": "eslint --fix --ext .jsx --ext .js src/ lib/"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "7.12.17",
"@babel/preset-react": "^7.0.0",
"argparse": "^2.0.1",
"babel-loader": "^8.0.0",
"chrome-remote-interface": "^0.32.1",
"compression-webpack-plugin": "^9.0.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^6.5.0",
"css-minimizer-webpack-plugin": "^3.0.1",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.0",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-standard": "^4.0.1",
"eslint-webpack-plugin": "^2.5.3",
"gettext-parser": "^2.0.0",
"glob": "^7.1.2",
"htmlparser": "^1.7.7",
"jed": "^1.1.1",
"mini-css-extract-plugin": "^2.5.3",
"popper.js": "^1.14.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"sizzle": "^2.3.3",
"strict-loader": "^1.2.0",
"string-replace-loader": "^3.0.0",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.54.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@patternfly/patternfly": "4.224.2",
"@patternfly/react-core": "4.276.6",
"@patternfly/react-icons": "4.93.6",
"@patternfly/react-styles": "4.92.6",
"@patternfly/react-table": "4.112.39",
"moment": "^2.19.3"
},
"engines": {
"npm": "*"
}
}