-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
24 lines (24 loc) · 1.04 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
{
"name": "@cura/monorepo",
"private": true,
"workspaces": [
"packages/hooks",
"packages/components",
"packages/contracts",
"packages/commands",
"examples/frontend"
],
"scripts": {
"build:hooks": "yarn workspace @cura/hooks build",
"build:components": "yarn workspace @cura/components build",
"build:storybook": "yarn workspace @cura/components build-storybook",
"build:frontend": "yarn build:hooks && yarn build:components && yarn workspace frontend build",
"dev:components": "yarn workspace @cura/components storybook",
"dev:frontend": "yarn workspace frontend dev",
"test:hooks": "yarn workspace @cura/hooks test",
"test:contracts": "yarn workspace @cura/contracts test",
"release:hooks": "yarn workspace @cura/hooks run semantic-release -e semantic-release-monorepo",
"release:components": "yarn workspace @cura/components run semantic-release -e semantic-release-monorepo"
},
"version": "0.0.0-development"
}