-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.75 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
{
"name": "@josipp/react-form",
"version": "0.1.44",
"description": "React form that uses react-hook-form with Material UI components",
"main": "dist/main.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "rollup -c"
},
"keywords": [],
"author": "Josip Popovic",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JP876/react-form.git"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@date-io/date-fns": "^2.13.2",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@hookform/error-message": "^2.0.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.7.0",
"@mui/x-date-pickers": "^5.0.20",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/react-vite": "^7.3.2",
"@storybook/testing-library": "^0.2.0",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"date-fns": "^2.28.0",
"eslint": "^8.48.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.13",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.0.1",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"rollup": "^3.20.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.3.2"
},
"peerDependencies": {
"@date-io/date-fns": "^2.13.2",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@hookform/error-message": "^2.0.0",
"@mui/material": "^5.7.0",
"@mui/x-date-pickers": "^5.0.20",
"date-fns": "^2.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4"
}
}