-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
66 lines (66 loc) · 2.39 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
64
65
66
{
"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/*"
]
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^8.3.4",
"@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",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"stylelint": "^13.6.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.1.2"
},
"scripts": {
"cm": "git-cz",
"bootstrap": "npx lerna bootstrap",
"clean": "npx lerna clean",
"start": "yarn workspace website start",
"watch": "yarn workspace @gio-design/components watch",
"build": "yarn build:tokens && yarn build:icons && yarn build:components",
"build:tokens": "yarn workspace @gio-design/tokens build",
"build:icons": "yarn workspace @gio-design/icons build",
"build:components": "yarn workspace @gio-design/components build",
"build:website": "yarn workspace website build",
"g:icons": "yarn workspace @gio-design/icons generate",
"lint": "yarn lint:components",
"lint:components": "eslint packages/components/src --ext .js,.jsx,.ts,.tsx",
"lint:style": "stylelint 'packages/components/src/**/*.{css,less}' --syntax less",
"lint-fix:components": "yarn run lint:components --fix",
"lint-fix:style": "yarn run lint:style --fix",
"test": "yarn workspace @gio-design/components test",
"version": "npx lerna version --no-private --no-git-tag-version",
"publish": "npx lerna publish from-package --no-verify-access --yes"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}