-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 945 Bytes
/
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
{
"name": "wrap-pages-monorepo",
"workspaces": [
"example-basic",
"example-micro-frontends/*",
"integration-tests",
"gatsby-plugin-wrap-pages"
],
"private": true,
"license": "MIT",
"author": "Tobias Høegh",
"version": "0.0.0",
"scripts": {
"start": "yarn workspace example-basic start",
"build": "yarn workspace example-basic build",
"serve": "yarn workspace example-basic serve",
"clean": "yarn workspace example-basic clean",
"test": "yarn workspace integration-tests test",
"test:cypress": "yarn workspace integration-tests test:cypress",
"test:cypress:ci": "yarn workspace integration-tests test:cypress:ci",
"test:watch": "yarn workspace integration-tests test --watch",
"lint": "yarn workspace gatsby-plugin-wrap-pages lint",
"release": "yarn workspace gatsby-plugin-wrap-pages release"
},
"volta": {
"node": "16.1.0"
},
"packageManager": "[email protected]"
}