-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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
{
"name": "antd-form-render",
"version": "1.6.2",
"description": "使用js配置,开发antd表单",
"keywords": [
"react",
"antd",
"form",
"formrender",
"hooks",
"lowcode"
],
"license": "MIT",
"repository": "https://github.com/leonwgc/antd-form-render",
"bugs": {
"url": "https://github.com/leonwgc/antd-form-render/issues"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "types/index.d.ts",
"scripts": {
"prepare": "husky install",
"lint-staged": "lint-staged",
"build": "father-build && tsc",
"build:doc": "node pack",
"start": "node pack --dev"
},
"peerDependencies": {
"antd": ">=4.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"antd": "^4.24.7",
"babel-eslint": "^10.1.0",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"father-build": "^1.19.5",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"packw": "^2.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.7.4",
"yargs": "^15.3.1"
},
"files": [
"dist",
"types"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,less}": [
"eslint --cache --fix"
]
},
"dependencies": {}
}