generated from goright-io/hands-on-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
{
"author": "Varya Stepanova <mail@varya.me>",
"description": "A starter repository for Hands-on with Design systems workshop",
"eslintIgnore": [
"product",
"design-system",
"webpack.config.js",
"webpack.product.config.js"
],
"keywords": [
"react",
"components",
"styled-components"
],
"license": "MIT",
"main": "https://github.com/bridge-design/hands-on-workshop#readme",
"name": "hands-on-workshop",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/bridge-design/hands-on-workshop.git"
},
"resolutions": {
"hosted-git-info": "^3.0.8"
},
"scripts": {
"add-component": "yarn workspace design-system add-component",
"deploy": "yarn workspace product deploy",
"design-system": "yarn workspace design-system start",
"design-system:build": "yarn workspace design-system build",
"design-system:version": "yarn workspace design-system version",
"product": "yarn workspace product start",
"product:build": "yarn workspace product build",
"product:version": "yarn workspace product version",
"start": "yarn workspace design-system start",
"storybook:build": "yarn workspace design-system storybook:build",
"test:creevey": "yarn workspace design-system creevey",
"test:creevey:ui": "yarn workspace design-system creevey --ui",
"test:creevey:update": "yarn workspace design-system creevey --update",
"tokens": "yarn workspace design-system tokens"
},
"standard": {
"env": [
"jest"
],
"globals": [],
"ignore": [
"node_modules/**",
"design-system/**"
],
"parser": "babel-eslint"
},
"version": "0.0.0",
"workspaces": [
"design-system",
"product"
]
}