forked from dohomi/react-hook-form-mui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.34 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
{
"version": "3.6.0",
"license": "MIT",
"repository": "https://github.com/dohomi/react-hook-form-mui",
"homepage": "https://react-hook-form-material-ui.vercel.app",
"keywords": [
"react",
"mui",
"material-ui",
"react-hook-form"
],
"name": "react-hook-form-mui",
"author": "Dominic Garms",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**"
],
"engines": {
"node": ">=14"
},
"scripts": {
"prepare": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"check-types": "tsc --noemit",
"deploy": "npm run build-storybook && cd storybook-static && vercel --name react-hook-form-material-ui --prod",
"build-old": "rimraf dist && microbundle",
"build": "tsup src/index.ts --clean --format esm,cjs --dts --external react --inject ./react-shim.js --legacy-output --minify --sourcemap",
"dev-tsup": "tsup src/index.ts --clean --format esm,cjs --watch --dts --external react --inject ./react-shim.js",
"release-minor": "release minor",
"release-patch": "release patch",
"release-major": "release major"
},
"peerDependencies": {
"@mui/icons-material": ">= 5.x <6",
"@mui/material": ">= 5.x <6",
"@mui/x-date-pickers": "5.0.0-alpha.6 <6",
"react": ">=17 <19",
"react-hook-form": ">=7.3.5",
"typescript": ">= 4.1"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@date-io/date-fns": "^2.13.1",
"@date-io/dayjs": "^2.13.1",
"@emotion/cache": "^11.9.3",
"@emotion/react": "^11.9.3",
"@emotion/server": "latest",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.4",
"@mui/x-date-pickers": "5.0.0-alpha.6",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/react": "^6.5.9",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"date-fns": "^2.28.0",
"@vitejs/plugin-react": "^1.3.2",
"react": "^18.2.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^18.2.0",
"react-hook-form": "^7.27.1",
"@storybook/builder-vite": "^0.1.36",
"release": "^6.3.1",
"tsup": "^6.1.2",
"typescript": "^4.7.3",
"vite": "^2.9.10"
}
}