-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
90 lines (90 loc) · 2.3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"private": false,
"name": "react-dhooks",
"version": "1.2.0",
"description": "react hooks",
"author": "Jade",
"license": "MIT",
"keywords": [
"hooks",
"react",
"react-hooks",
"dumi",
"react hooks",
"hooks-library",
"typescript"
],
"files": [
"es"
],
"homepage": "https://github.com/panyushan-jade/dHooks",
"repository": {
"type": "git",
"url": "https://github.com/panyushan-jade/dHooks"
},
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"prepublishOnly": "npm run build"
},
"module": "es/index.js",
"typings": "es/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "npx --no-install commitlint -e %GIT_PARAMS%"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"**/src/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix --ext .ts,.tsx"
],
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"antd": "^5.2.2",
"babel-eslint": "^10.1.0",
"eslint": "^8.11.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"react": "^16.12.0 || ^17.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@umijs/fabric": "^2.8.1",
"@umijs/test": "^3.0.5",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.3",
"cz-customizable": "^6.3.0",
"dumi": "^1.1.0",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1",
"typescript": "^4.6.3",
"yorkie": "^2.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^19.0.5"
}
}