-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
45 lines (45 loc) · 1017 Bytes
/
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
{
"private": true,
"name": "open-source",
"version": "1.0.0",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\""
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write",
"git add"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
},
"devDependencies": {
"all-contributors-cli": "^6.17.2",
"dumi": "^1.0.9",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"yorkie": "^2.0.0"
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"antd": "^4.5.4",
"axios": "^0.20.0",
"husky": "^4.2.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juejin-im/open-source.git"
}
}