-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "commit-workflow",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:walrusjs/commit-workflow.git",
"license": "MIT",
"author": "wangxingkang <[email protected]>",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "father-build",
"commit": "node ./packages/commit-cli/lib/cli.js",
"lint-staged": "lint-staged",
"lint:commit": "commitlint",
"prepare": "husky install",
"prettier": "pretty-quick --staged",
"release": "walrus release --commit-message '🔖 chore(release): publish'",
"site": "dumi build",
"start": "dumi dev",
"test": "walrus test"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@commitlint/cli": "14.1.0",
"@commitlint/lint": "14.1.0",
"@types/react": "^17",
"@types/react-dom": "^17",
"@walrus/cli": "1.3.4",
"@walrus/plugin-release": "1.14.0",
"@walrus/plugin-run": "0.5.0",
"@walrus/plugin-test": "1.1.0",
"antd": "4.17.2",
"babel-plugin-add-module-exports": "^1.0.4",
"dumi": "1.1.33",
"father-build": "1.20.4",
"husky": "7.0.4",
"lerna": "4.0.0",
"lint-staged": "12.1.2",
"prettier": "2.5.0",
"prettier-plugin-packagejson": "2.2.15",
"pretty-quick": "3.1.2",
"react": "17.0.2",
"react-copy-to-clipboard": "5.0.4",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"typescript": "4.5.2"
}
}