-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
77 lines (77 loc) · 1.91 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
{
"name": "react-hook-form-antd",
"version": "1.1.2",
"description": "Master your And Design form with React Hook Form!",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm run build",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"test:preview": "vitest-preview"
},
"keywords": [
"react",
"form",
"react-hook-form",
"ant-design"
],
"repository": "github:jsun969/react-hook-form-antd",
"author": "Yeyang (Justin) Sun",
"license": "MIT",
"devDependencies": {
"@hookform/resolvers": "^3.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"antd": "^5.14.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"simple-git-hooks": "^2.9.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"vitest-preview": "^0.0.1",
"zod": "^3.22.4"
},
"peerDependencies": {
"antd": "^5",
"react": "^16.8.0 || ^17 || ^18",
"react-dom": "^16.8.0 || ^17 || ^18",
"react-hook-form": "^7"
},
"lint-staged": {
"*.{js,ts,tsx,css,md}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}