forked from cockpit-project/starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 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
60
61
62
{
"name": "backblaze-b2",
"description": "Cockpit plugin for Backblaze B2 backups",
"type": "module",
"main": "index.js",
"repository": "https://github.com/rabol/backblaze-b2",
"author": "Steen Rabol",
"license": "LGPL-2.1",
"engines": {
"node": ">= 16"
},
"scripts": {
"watch": "ESBUILD_WATCH='true' ./build.js",
"build": "./build.js",
"eslint": "eslint src/",
"eslint:fix": "eslint --fix src/",
"stylelint": "stylelint src/*{.css,scss}",
"stylelint:fix": "stylelint --fix src/*{.css,scss}"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/react": "18.3.13",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.38.0",
"argparse": "2.0.1",
"esbuild": "^0.25.8",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-replace": "1.4.0",
"esbuild-sass-plugin": "3.3.1",
"esbuild-wasm": "0.25.8",
"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-node": "11.1.0",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "4.6.2",
"gettext-parser": "8.0.0",
"glob": "11.0.3",
"jed": "1.1.1",
"qunit": "2.24.1",
"sass": "1.79.6",
"stylelint": "16.22.0",
"stylelint-config-recommended-scss": "15.0.1",
"stylelint-config-standard": "38.0.0",
"stylelint-config-standard-scss": "15.0.1",
"stylelint-formatter-pretty": "4.0.1",
"typescript": "5.8.3"
},
"dependencies": {
"@patternfly/patternfly": "6.2.3",
"@patternfly/react-core": "6.2.2",
"@patternfly/react-icons": "6.2.2",
"@patternfly/react-styles": "6.2.2",
"@patternfly/react-table": "^6.3.0",
"crypto-js": "^4.2.0",
"react": "18.3.1",
"react-dom": "18.3.1"
}
}