forked from cockpit-project/cockpit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
{
"name": "CockpitDevelopmentDependencies",
"description": "Cockpit isn't a Node package, these are devel time deps, not needed to build tarball either",
"type": "module",
"private": true,
"dependencies": {
"@patternfly/patternfly": "5.0.2",
"@patternfly/react-core": "5.0.0",
"@patternfly/react-icons": "5.0.0",
"@patternfly/react-styles": "5.0.0",
"@patternfly/react-table": "5.0.0",
"@patternfly/react-tokens": "5.0.0",
"deep-equal": "2.0.5",
"js-sha1": "0.6.0",
"js-sha256": "0.9.0",
"json-stable-stringify-without-jsonify": "1.0.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"remarkable": "2.0.1",
"throttle-debounce": "2.3.0",
"uuid": "7.0.3",
"xterm": "5.1.0",
"xterm-addon-canvas": "0.3.0"
},
"devDependencies": {
"argparse": "^2.0.1",
"axe-core": "^3.5.2",
"chrome-remote-interface": "^0.32.1",
"cssnano-preset-lite": "^2.0.1",
"date-fns": "^2.22.1",
"esbuild": "^0.19.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-replace": "^1.3.0",
"esbuild-sass-plugin": "^2.10.0",
"esbuild-wasm": "^0.19.1",
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gettext-parser": "^2.0.0",
"htmlparser": "^1.7.7",
"jed": "^1.1.1",
"qunit": "^2.19.0",
"qunit-tap": "^1.5.1",
"sass": "^1.59.3",
"sizzle": "^2.3.5",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-formatter-pretty": "^3.1.1",
"stylelint-use-logical-spec": "^5.0.0"
},
"scripts": {
"eslint": "eslint --ext .js --ext .jsx pkg/ test/common/",
"eslint:fix": "eslint --fix --ext .js --ext .jsx pkg/ test/common/",
"stylelint": "stylelint pkg/*/*{.css,scss}",
"stylelint:fix": "stylelint --fix pkg/*/*{.css,scss}"
}
}