forked from curaOS/source
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.15 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.15 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
{
"name": "hellohellomonorepo",
"private": true,
"repository": "https://github.com/semantic-release/semantic-release/",
"workspaces": [
"packages/hooks",
"packages/components",
"packages/contracts",
"packages/commands",
"examples/frontend"
],
"scripts": {
"build:hooks": "yarn workspace hellohellohooks build",
"build:components": "yarn workspace hellohellocomponents build",
"build:storybook": "yarn workspace hellohellocomponents build-storybook",
"build:frontend": "yarn build:hooks && yarn build:components && yarn workspace frontend build",
"dev:components": "yarn workspace hellohellocomponents storybook",
"dev:frontend": "yarn workspace frontend dev",
"test:hooks": "yarn workspace hellohellohooks test",
"test:contracts": "yarn workspace hellohellocontracts test",
"release:hooks": "yarn workspace hellohellohooks run semantic-release -e semantic-release-monorepo",
"release:components": "yarn workspace hellohellocomponents run semantic-release -e semantic-release-monorepo"
},
"version": "0.0.0-development"
}