-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "patternfly-org-workspace",
"private": true,
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"packageManager": "yarn@4.5.3+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90",
"scripts": {
"analyze": "yarn workspace patternfly-org analyze",
"develop": "yarn workspace patternfly-org develop",
"dev": "yarn workspace site dev",
"develop:extensions": "EXTENSIONS_ONLY=true PRERELEASE=true yarn develop",
"build:analyze": "yarn workspace patternfly-org build:analyze && yarn copy",
"build": "yarn workspace patternfly-org build && yarn copy",
"build:extensions": "EXTENSIONS_ONLY=true PRERELEASE=true yarn build",
"build:doc-core": "yarn workspace site build",
"preview:doc-core": "yarn workspace site wrangler:preview",
"build:ts": "yarn workspace patternfly-org build:ts",
"build:ts:watch": "yarn build:ts --watch",
"copy": "rm -rf build/patternfly-org/site && mkdir -p build/patternfly-org && cp -r packages/documentation-site/public build/patternfly-org/site",
"clean": "lerna run clean && rm -rf build",
"serve": "npx pf-docs-framework serve build/patternfly-org/site",
"serve:doc-core": "yarn workspace site serve",
"test": "yarn workspace patternfly-org test:a11y:ci",
"screenshots": "yarn workspace patternfly-org screenshots",
"start": "yarn develop",
"start:extensions": "yarn develop:extensions",
"start:doc-core": "yarn workspace site dev",
"uninstall": "find . -name node_modules | xargs rm -rf",
"workflows": "node .github/generate-workflows",
"test:a11y": "yarn workspace patternfly-org test:a11y"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@octokit/rest": "^19.0.13",
"@patternfly/patternfly": "^6.5.0-prerelease.46",
"@patternfly/react-code-editor": "^6.5.0-prerelease.39",
"@patternfly/react-core": "^6.5.0-prerelease.36",
"@patternfly/react-table": "^6.5.0-prerelease.37",
"glob": "^8.1.0",
"lerna": "^9.0.5",
"monaco-editor": "0.54.0",
"react": "^18",
"react-dom": "^18",
"surge": "^0.27.3"
},
"resolutions": {
"node-sass": ">=6.0.1",
"tar-fs": ">=3.0.9",
"cross-spawn": "7.0.5",
"trim": ">=0.0.3",
"axios": ">=0.21.3",
"braces": ">=3.0.3",
"ssri": ">=8.0.1",
"tmp": ">=0.2.4",
"ws": ">=8.17.1",
"@babel/helpers": ">=7.26.10",
"@babel/runtime": ">=7.26.10",
"parse-git-config": ">=3.0.0",
"ip": ">=2.0.0",
"http-cache-semantics": ">=4.1.1",
"nanoid": "3.3.8",
"basic-ftp": ">=5.2.0",
"semver": ">=7.5.2",
"tar": ">=6.2.1",
"rollup": ">=4.59.0",
"devalue": ">=5.6.3",
"ajv": ">=6.14.0",
"qs": ">=6.15.0",
"@isaacs/brace-expansion": ">=5.0.1",
"@patternfly/react-code-editor": "^6.5.0-prerelease.39",
"@patternfly/react-core": "^6.5.0-prerelease.36",
"@patternfly/react-table": "^6.5.0-prerelease.37",
"monaco-editor": "0.54.0"
}
}