forked from thundersdata-frontend/td-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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": "root",
"description": "使用lerna 统一管理公司前端所有仓库代码",
"version": "1.28.0",
"license": "Apache-2.0",
"author": "陈杰 <chenjie@thundersdata.com>",
"homepage": "https://github.com/thundersdata-frontend/td-design#readme",
"scripts": {
"commit": "git-cz",
"release": "git add . && node scripts/release.js && git push --follow-tags",
"shaking": "node scripts/remove.js",
"eslint": "eslint --fix --ext .ts,.tsx packages",
"prettier": "prettier --check packages/**/*.tsx --write",
"tsc": "lerna run tsc --since master",
"dumi:dev": "dumi dev",
"dumi:build": "dumi build",
"dumi:deploy": "gh-pages -d docs-dist",
"docs:deploy": "npm run dumi:build && npm run dumi:deploy"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"changelog": {
"emojis": true,
"authorName": true,
"authorEmail": true
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"npm run eslint",
"npm run prettier"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@umijs/fabric": "^2.10.2",
"babel-plugin-import": "^1.13.5",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-custom-config": "^0.3.1",
"cz-customizable": "^6.2.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"file-loader": "^6.2.0",
"glob": "^8.0.1",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.4.1",
"minimist": "^1.2.6",
"prettier": "^2.6.2",
"standard-version": "^9.3.2"
},
"dependencies": {
"antd": "^4.20.2",
"dumi": "^1.1.40"
}
}