forked from patternfly/gatsby-theme-patternfly-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (36 loc) · 1.5 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
{
"name": "gatsby-starter-theme-workspace",
"private": true,
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"develop:next": "yarn workspace @patternfly/patternfly gatsby develop -p 8001",
"build:next": "yarn workspace @patternfly/patternfly build-patternfly",
"build:next:docs": "yarn workspace @patternfly/patternfly build:site",
"serve:next": "yarn workspace @patternfly/patternfly gatsby serve -p 8001",
"clean:next": "yarn workspace @patternfly/patternfly clean",
"develop:react": "yarn workspace @patternfly/react-docs develop -p 8002",
"build:react": "yarn workspace @patternfly/react-lerna-root build:pf4",
"build:react:docs": "yarn workspace @patternfly/react-lerna-root build:docs",
"serve:react": "yarn workspace @patternfly/react-docs gatsby serve -p 8002",
"clean:react": "yarn workspace @patternfly/react-docs clean",
"develop:org": "yarn workspace patternfly-org-demo develop -p 8003",
"build:org:docs": "yarn workspace patternfly-org-demo build",
"serve:org": "yarn workspace patternfly-org-demo gatsby serve -p 8003",
"clean:org": "yarn workspace patternfly-org-demo clean"
},
"workspaces": {
"packages": [
"gatsby-theme-patternfly-org",
"patternfly-org-demo",
"patternfly-org-demo/patternfly-next",
"patternfly-org-demo/patternfly-react",
"patternfly-org-demo/patternfly-react/packages/**"
],
"nohoist": [
"**/@patternfly/*",
"**/gatsby-theme-patternfly-org"
]
}
}