-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.88 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.88 KB
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
{
"name": "podman",
"description": "Cockpit UI for Podman Containers",
"type": "module",
"main": "index.js",
"repository": "git@github.com:cockpit-project/cockpit-podman.git",
"author": "",
"license": "LGPL-2.1",
"scripts": {
"watch": "./build.js -w",
"build": "./build.js",
"eslint": "eslint --ext .jsx --ext .js src/",
"eslint:fix": "eslint --fix --ext .jsx --ext .js src/",
"stylelint": "stylelint src/*.{css,scss}",
"stylelint:fix": "stylelint --fix src/*.{css,scss}"
},
"devDependencies": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/throttle-debounce": "5.0.2",
"@typescript-eslint/eslint-plugin": "8.56.1",
"esbuild-wasm": "0.27.3",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "4.6.2",
"stylelint": "17.4.0",
"stylelint-config-recommended-scss": "17.0.0",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-formatter-pretty": "4.0.1",
"stylelint-use-logical": "2.1.3",
"typescript": "5.9.3"
},
"dependencies": {
"@patternfly/patternfly": "6.4.0",
"@patternfly/react-core": "6.4.1",
"@patternfly/react-icons": "6.4.0",
"@patternfly/react-styles": "6.4.0",
"@patternfly/react-table": "6.4.1",
"@patternfly/react-tokens": "6.4.0",
"@xterm/xterm": "6.0.0",
"@xterm/addon-webgl": "0.19.0",
"argparse": "2.0.1",
"docker-names": "1.2.1",
"esbuild": "0.27.3",
"esbuild-sass-plugin": "3.6.0",
"gettext-parser": "9.0.1",
"ipaddr.js": "2.3.0",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"throttle-debounce": "5.0.2"
}
}