generated from goright-io/hands-on-design-system
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.62 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
{
"name": "hands-on-workshop",
"version": "0.0.0",
"description": "A starter repository for Hands-on with Design systems workshop",
"author": "Varya Stepanova <[email protected]>",
"main": "https://github.com/bridge-design/hands-on-workshop#readme",
"private": true,
"license": "MIT",
"workspaces": [
"design-system",
"product"
],
"scripts": {
"start": "yarn workspace design-system start",
"tokens": "yarn workspace design-system tokens",
"design-system": "yarn workspace design-system start",
"design-system:build": "yarn workspace design-system build",
"design-system:version": "yarn workspace design-system version",
"storybook:build": "yarn workspace design-system storybook:build",
"add-component": "yarn workspace design-system add-component",
"test": "yarn workspace design-system creevey",
"test:update": "yarn workspace design-system creevey --update",
"test:ui": "yarn workspace design-system creevey --ui",
"product": "yarn workspace product start",
"product:build": "yarn workspace product build",
"product:version": "yarn workspace product version",
"deploy:product": "gh-pages -d product/build && yarn deploy:storybook",
"deploy:storybook": "gh-pages -d design-system/storybook-static -e storybook"
},
"eslintIgnore": [
"product",
"design-system",
"webpack.config.js",
"webpack.product.config.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bridge-design/hands-on-workshop.git"
},
"keywords": [
"react",
"components",
"styled-components"
],
"resolutions": {
"babel-loader": "8.1.0"
}
}