-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.49 KB
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
{
"private": true,
"name": "diy-hooks",
"version": "1.0.0",
"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",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "jest",
"test:coverage": "jest --coverage"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"jinrishici": "^1.0.6",
"react": "^16.12.0",
"react-fast-compare": "^3.2.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.172",
"@umijs/test": "^3.0.5",
"antd": "^4.16.13",
"axios": "0.19.1",
"babel-plugin-import": "^1.13.3",
"choerodon-ui": "^1.4.4",
"dumi": "^1.1.30",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"lint-staged": "^10.0.7",
"lodash": "^4.17.21",
"mobx": "4.7.0",
"mobx-react": "6.1.5",
"mobx-react-lite": "1.5.2",
"prettier": "^2.2.1",
"ts-jest": "^27.0.7",
"yorkie": "^2.0.0"
}
}