forked from patternfly/patternfly-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.65 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
{
"name": "@patternfly/patternfly-org-lerna-root",
"private": true,
"version": "4.0.0",
"author": "Red Hat",
"scripts": {
"lerna": "lerna",
"prebuild": "lerna run prebuild",
"build": "yarn clean && yarn build:pf && yarn combine-sites && yarn copy-assets",
"build:pf": "lerna run build --scope='@patternfly/org-patternfly-3' --scope='@patternfly/org-patternfly-4' --parallel --stream",
"build:pf3": "lerna run build --scope=@patternfly/org-patternfly-3 --stream",
"build:pf4": "lerna run build --scope=@patternfly/org-patternfly-4 --stream",
"combine-sites": "node ./scripts/combine-sites",
"copy-assets": "node ./scripts/copy-assets",
"clean": "rm -rf out && yarn clean:pf3",
"clean:pf3": "rm -rf packages/patternfly-3/_site && rm -rf packages/patternfly-3/_build && rm -rf packages/patternfly-3/repos",
"clean:pf4": "rm -rf packages/patternfly-4/public",
"start:prod": "http-server ./out -p 8384 -o",
"start:pf3": "lerna run dev --scope=@patternfly/org-patternfly-3 --stream",
"start:pf4": "lerna run develop --scope=@patternfly/org-patternfly-4 --stream"
},
"license": "Apache-2.0",
"devDependencies": {
"fs-extra": "7.0.1",
"http-server": "^0.11.1",
"lerna": "^3.10.6",
"surge": "^0.20.4"
},
"description": "Documentation for PatternFly",
"repository": {
"type": "git",
"url": "https://github.com/patternfly/patternfly-org.git"
},
"bugs": {
"url": "https://github.com/patternfly/patternfly-org/issues"
},
"homepage": "https://github.com/patternfly/patternfly-org",
"workspaces": [
"packages/*",
"packages/patternfly-4/plugins/**/*"
],
"dependencies": {}
}