-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
103 lines (103 loc) · 2.92 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "root",
"private": true,
"devEngines": {
"node": "8.x || 9.x || 10.x || 11.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "dumi dev",
"build": "formily-tpl build",
"build:docs": "dumi build",
"test": "jest --coverage",
"test:prod": "jest --coverage --silent",
"preversion": "yarn install --ignore-engines && npm run build && npm run lint",
"version:alpha": "lerna version prerelease --preid alpha",
"version:beta": "lerna version prerelease --preid beta",
"version:rc": "lerna version prerelease --preid rc",
"version:patch": "lerna version patch",
"version:minor": "lerna version minor",
"version:preminor": "lerna version preminor --preid beta",
"version:major": "lerna version major",
"release": "lerna publish from-package --yes",
"lint": "eslint ."
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/prompt-cli": "^14.1.0",
"@formily/template": "^1.0.0-alpha.21",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/react": "^11.2.3",
"@types/jest": "^24.0.18",
"@types/node": "^12.6.8",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.8.2",
"@umijs/plugin-sass": "^1.1.1",
"dumi": "^1.1.0",
"escape-string-regexp": "^4.0.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-markdown": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^4.2.0",
"ghooks": "^2.0.4",
"jest": ">=25 <26",
"jest-dom": "^3.1.2",
"lerna": "^4.0.0",
"lint-staged": "^8.2.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-import-plugin": "1.6.1",
"ts-jest": "^26.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formilyjs/tdesign-react.git"
},
"config": {
"ghooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --ext .ts,.tsx,.js",
"pretty-quick --staged",
"git add"
],
"*.md": [
"pretty-quick --staged",
"git add"
]
},
"dependencies": {
"@formily/core": "^2.2.0",
"@formily/grid": "^2.2.0",
"@formily/react": "^2.2.0",
"@formily/reactive": "^2.2.0",
"@formily/shared": "^2.2.0",
"dayjs": "^1.11.5",
"mfetch": "^0.2.27",
"react-sortable-hoc": "^2.0.0",
"react-sticky-box": "^0.9.3",
"tdesign-icons-react": "^0.1.1",
"tdesign-react": "^0.36.3"
},
"resolutions": {
"@types/react": "^17.0.1",
"rollup": "2.60.2"
}
}