-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
55 lines (55 loc) · 3 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@kontent-ai/gatsby-packages",
"description": "Monorepo containing Kontent.ai packages for Gatsby.",
"repository": "https://github.com/kontent-ai/gatsby-packages.git",
"homepage": "https://github.com/kontent-ai/gatsby-packages#readme",
"author": {
"name": "Ondřej Chrastina",
"email": "[email protected]",
"url": "https://ondrej.chrastina.dev"
},
"license": "MIT",
"private": true,
"workspaces": [
"packages/gatsby-source",
"packages/gatsby-components",
"site",
"examples/navigation",
"examples/resolution",
"examples/relationships",
"examples/dsg-ssr"
],
"scripts": {
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint --workspaces -- --fix",
"test": "npm run test --workspaces",
"clean:site": "npm run clean --workspace=@kontent-ai/gatsby-starter-kontent-hello-world",
"build": "npm run build --workspaces",
"build:source": "npm run build --workspace=@kontent-ai/gatsby-source",
"build:components": "npm run build --workspace=@kontent-ai/gatsby-components ",
"build:navigation": "npm run build:source && npm run build --workspace=@kontent-ai/gatsby-example-navigation",
"build:resolution": "npm run build:components && npm run build:source && npm run build --workspace=@kontent-ai/gatsby-example-resolution",
"build:relationships": "npm run build:source && npm run build --workspace=@kontent-ai/gatsby-example-relationships",
"build:dsg-ssr": "npm run build:source && npm run build --workspace=@kontent-ai/gatsby-example-dsg-ssr",
"build:site": "npm run build:source && npm run build:components && npm run build --workspace=@kontent-ai/gatsby-starter-kontent-hello-world",
"watch": "run-p watch:**",
"prepublishOnly": "npm run build",
"develop:site": "npm run develop --workspace=@kontent-ai/gatsby-starter-kontent-hello-world",
"develop:site:preview": "npm run develop:preview --workspace=@kontent-ai/gatsby-starter-kontent-hello-world",
"develop:navigation": "npm run develop --workspace=@kontent-ai/gatsby-example-navigation",
"develop:resolution": "npm run develop --workspace=@kontent-ai/gatsby-example-resolution",
"develop:resolution:preview": "npm run develop:preview --workspace=@kontent-ai/gatsby-example-resolution",
"develop:relationships": "npm run develop --workspace=@kontent-ai/gatsby-example-relationships",
"develop:dsg-ssr": "npm run develop --workspace=@kontent-ai/gatsby-example-dsg-ssr",
"develop:site:playground": "cross-env GATSBY_GRAPHQL_IDE=playground npm run develop:site",
"watch:source": "npm run watch --workspace=@kontent-ai/gatsby-source",
"watch:components": "npm run watch --workspace=@kontent-ai/gatsby-components",
"test:source": "npm run test --workspace=@kontent-ai/gatsby-source",
"test:components": "npm run test --workspace=@kontent-ai/gatsby-components",
"set:version": "export LERNA_VERSION=\"$(node -e \"require('./lerna.json').version\")\""
},
"devDependencies": {
"lerna": "^6.4.0",
"npm-run-all": "^4.1.5"
}
}