-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
104 lines (104 loc) · 3.11 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
104
{
"name": "react-hook-form-mantine",
"version": "3.1.1",
"description": "React hook form wrapper for Mantine components",
"keywords": [
"react-hook-form",
"form-validation",
"mantine"
],
"homepage": "https://aranlucas.github.io/react-hook-form-mantine",
"repository": {
"type": "git",
"url": "https://github.com/aranlucas/react-hook-form-mantine.git"
},
"license": "MIT",
"author": "Lucas Arango",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.mjs",
"require": "./dist/index.cjs"
},
"main": "dist/index.cjs",
"module": "dist/index.esm.mjs",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle",
"build-storybook": "storybook build",
"compile": "tsc --noEmit",
"coverage": "vitest run --coverage",
"generate-barrels": "barrelsby --delete -c .barrelsby",
"lint": "eslint src/**/*.tsx --fix",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"watch": "microbundle --watch"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@hookform/resolvers": "^3.3.1",
"@mantine/core": "7.0.0",
"@mantine/dates": "7.0.0",
"@mantine/ds": "^7.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-actions": "^7.4.2",
"@storybook/addon-essentials": "^7.4.2",
"@storybook/addon-interactions": "^7.4.2",
"@storybook/addon-links": "^7.4.2",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.4.2",
"@storybook/react": "^7.4.2",
"@storybook/react-vite": "^7.4.2",
"@storybook/testing-library": "^0.2.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/ui": "latest",
"barrelsby": "^2.8.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"jsdom": "latest",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.46.1",
"semantic-release": "^22.0.0",
"storybook": "^7.4.2",
"storybook-dark-mode": "^3.0.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.4",
"zod": "^3.22.2"
},
"peerDependencies": {
"@mantine/core": "^7.0.0",
"@mantine/dates": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43"
},
"isLibrary": true
}