forked from pisacode/react-hook-form-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.39 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
{
"version": "0.5.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"prepare": "tsdx build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"@chakra-ui/react": "^1.8.0",
"react": ">=17",
"react-hook-form": "^7.19.1"
},
"homepage": "https://github.com/FionnCasey/react-hook-form-generator#readme",
"repository": {
"type": "git",
"url": "https://github.com/FionnCasey/react-hook-form-generator.git"
},
"bugs": "https://github.com/FionnCasey/react-hook-form-generator/issues",
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint"
}
},
"keywords": [
"react",
"react-hook-form",
"form-generator",
"form-schema"
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-hook-form-generator",
"author": "Fionn Casey",
"module": "dist/react-hook-form-generator.esm.js",
"devDependencies": {
"@babel/core": "7.15.5",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.0",
"@chakra-ui/storybook-addon": "^1.0.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@storybook/addon-actions": "^6.4.20",
"@storybook/addon-essentials": "^6.4.20",
"@storybook/addon-interactions": "^6.4.20",
"@storybook/addon-links": "^6.4.20",
"@storybook/react": "^6.4.20",
"@storybook/testing-library": "^0.0.9",
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/react": "12.1.2",
"@types/lodash.merge": "^4.6.6",
"@types/react": "17.0.30",
"@types/react-dom": "17.0.9",
"babel-loader": "8.2.0",
"emotion-theming": "^11.0.0",
"framer-motion": "^4",
"husky": "^7.0.4",
"react": ">=17.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": ">=17.0.2",
"react-hook-form": "7.19.1",
"react-is": "^17.0.2",
"react-select": "^5.1.0",
"ts-loader": "^9.2.6",
"tsdx": "^0.14.1",
"tslib": "^2.0.0",
"typescript": "4.3.5"
},
"dependencies": {
"lodash.merge": "^4.6.2"
}
}