forked from youzan/zent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.92 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
{
"name": "zent-repository",
"version": "1.0.0",
"private": true,
"description": "一套前端设计语言和基于React的实现",
"scripts": {
"test": "./scripts/test.sh",
"test-component": "./scripts/test-component.sh",
"lint": "yarn lint-ts && yarn lint-js && yarn lint-style",
"lint-ts": "tslint --format stylish --project packages/zent/tsconfig.json 'packages/zent/src/**/*.ts*(x)'",
"lint-js": "eslint packages/babel-plugin-zent/src packages/*/__tests__ site/src/ site/webpack site/zent site/scripts",
"lint-style": "sass-lint -vq",
"bootstrap": "./scripts/bootstrap.sh",
"format": "prettier --write",
"prettify-style": "prettier --write -- \"packages/zent/assets/**/*.scss\" \"site/src/**/*.scss\"",
"prettify-js": "prettier --write -- \"packages/*/__tests__/**/*.js\" \"site/{src,scripts,webpack,zent}/**/*.js\"",
"prettify-ts": "prettier --write -- \"packages/*/src/**/*.ts*(x)\"",
"prettify": "yarn prettify-js && yarn prettify-ts && yarn prettify-style",
"build": "lerna run build",
"dev": "cd site && yarn dev",
"deploy": "cd site && yarn deploy",
"deploy-beta": "cd site && yarn deploy-beta"
},
"workspaces": [
"site",
"packages/babel-plugin-zent",
"packages/zent"
],
"repository": {
"type": "git",
"url": "git@github.com:youzan/zent.git"
},
"keywords": [
"react",
"component"
],
"author": "Youzan FE",
"license": "MIT",
"devDependencies": {
"babel-eslint": "10.0.1",
"coveralls": "^3.0.3",
"cross-env": "^4.0.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-lean-imports": "^0.3.3",
"eslint-plugin-react": "^7.11.1",
"eslint": "^5.9.0",
"husky": "^1.2.0",
"lerna": "2.10.2",
"lint-staged": "^8.0.5",
"prettier": "^1.15.2",
"sass-lint": "^1.12.1"
}
}