forked from patternfly/widgetized-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.2 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.2 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
{
"name": "@patternfly/widgetized-dashboard",
"version": "1.0.0",
"description": "Provide a user customizable widget based dashboard built using PatternFly",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "tsc --build --verbose ./tsconfig.json && cp src/styles.css dist/esm/styles.css",
"build:watch": "tsc --build --verbose --watch ./tsconfig.json & nodemon --watch src/styles.css --exec 'cp src/styles.css dist/esm/styles.css'",
"build:fed:packages": "node generate-fed-package-json.js",
"clean": "rimraf dist",
"docs:develop": "pf-docs-framework start",
"docs:build": "pf-docs-framework build all --output public",
"docs:serve": "pf-docs-framework serve public --port 5000",
"docs:screenshots": "pf-docs-framework screenshots --urlPrefix http://localhost:5000",
"test:a11y": "patternfly-a11y --config patternfly-a11y.config",
"serve:a11y": "yarn serve coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/patternfly/widgetized-dashboard"
},
"author": "Red Hat",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly/widgetized-dashboard/issues"
},
"homepage": "https://github.com/patternfly/widgetized-dashboard#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@patternfly/react-core": "^6.6.0-prerelease.1",
"@patternfly/react-icons": "^6.6.0-prerelease.1",
"clsx": "^2.1.0",
"react-grid-layout": "^2.2.2"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@patternfly/documentation-framework": "^6.44.1",
"@patternfly/patternfly": "^6.6.0-prerelease.3",
"@patternfly/patternfly-a11y": "^5.2.1",
"@patternfly/react-code-editor": "^6.6.0-prerelease.2",
"@patternfly/react-table": "^6.6.0-prerelease.1",
"monaco-editor": "^0.53.0",
"nodemon": "^3.0.0",
"react-monaco-editor": "^0.59.0",
"rimraf": "^6.0.1"
}
}