-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
34 lines (34 loc) · 1.29 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
{
"name": "@prismicio/gatsby",
"private": true,
"workspaces": [
"packages/gatsby-source-prismic",
"packages/gatsby-plugin-prismic-previews",
"test-site"
],
"scripts": {
"build": "npm run build --workspace gatsby-source-prismic --workspace gatsby-plugin-prismic-previews",
"build:all": "npm run build --workspaces --if-present",
"dev": "concurrently \"npm run dev --workspace gatsby-source-prismic\" \"npm run dev --workspace gatsby-plugin-prismic-previews\" --names \"source,previews\" --prefix-colors magenta,blue",
"format": "npm run format --workspaces --if-present",
"postinstall": "patch-package",
"lint": "npm run lint --workspaces --if-present",
"release": "npm test && npm run build && lerna publish",
"release:alpha": "npm test && npm run build && lerna publish --dist-tag alpha --preid alpha",
"release:beta": "npm test && npm run build && lerna publish --dist-tag beta --preid beta",
"size": "size-limit",
"test": "npm run test --workspaces --if-present",
"types": "npm run types --workspaces --if-present",
"unit": "npm run unit --workspaces --if-present"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"concurrently": "^8.2.0",
"lerna": "^7.0.2",
"patch-package": "^7.0.0",
"size-limit": "^8.2.4"
},
"engines": {
"node": ">=14.15.0"
}
}