-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
63 lines (63 loc) · 2.23 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
59
60
61
62
63
{
"name": "growingio-design",
"version": "1.0.0",
"description": "A React UI library and GrowingIO Design System",
"main": "index.js",
"repository": "https://github.com/growingio/gio-design.git",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@gio-design/tokens",
"**/@gio-design/tokens/**",
"**/@gio-design/themes",
"**/@gio-design/themes/**",
"**/@gio-design/react-svg-icon-generator/**"
]
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-eslint": "^10.1.0",
"commitizen": "^4.1.2",
"cz-lerna-changelog": "^2.0.2",
"eslint": "^7.1.0",
"eslint-config-alloy": "^3.7.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lerna": "^3.16.4",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5"
},
"scripts": {
"start": "npx lerna run --scope @gio-design/components start --stream",
"install": "npx lerna bootstrap",
"start:website": "npx lerna run --scope website start --stream",
"start:playground": "npx lerna run --scope playground start --stream",
"clean": "npx lerna clean",
"build": "yarn build:tokens && yarn build:themes && yarn build:icon-generator && yarn build:icon && yarn build:components",
"build:playground": "yarn workspace playground build",
"build:website": "yarn workspace website docs:build",
"build:tokens": "yarn workspace @gio-design/tokens build",
"build:themes": "yarn workspace @gio-design/themes build",
"build:icon": "yarn workspace @gio-design/icon build",
"build:components": "yarn workspace @gio-design/components build",
"build:icon-generator": "yarn workspace @gio-design/react-svg-icon-generator build",
"publish": "npx lerna publish",
"lint": "yarn lint:components",
"lint:components": "eslint packages/components/src --ext .js,.jsx,.ts,.tsx",
"cm": "git-cz",
"test": "yarn test:components",
"test:components": "yarn workspace @gio-design/components test"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}