forked from patternfly/gatsby-theme-patternfly-org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.65 KB
/
package.json
File metadata and controls
39 lines (38 loc) · 1.65 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
{
"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",
"build:org:prefix": "yarn workspace patternfly-org-demo build:prefix",
"serve:org": "yarn workspace patternfly-org-demo serve",
"serve:org:prefix": "yarn workspace patternfly-org-demo serve:prefix",
"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/patternfly",
"**/gatsby-theme-patternfly-org"
]
}
}