-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 3.66 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
105
106
107
108
{
"name": "react-validatable-form",
"version": "5.0.2",
"description": "React validatable form hook that is used to make dynamic client side validations on react forms",
"keywords": [
"react",
"validation",
"validatable-form",
"validatable-form-hook"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rimraf dist && rollup --config rollup.config.mjs --environment NODE_ENV:production",
"start": "rimraf dist && rollup --config rollup.config.mjs -w --environment NODE_ENV:development",
"prepublishOnly": "npm run build",
"start-storybook": "vite --port 3136",
"build-storybook": "vite build",
"preview-storybook": "vite preview",
"test": "jest tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obss/react-validatable-form.git"
},
"homepage": "https://obss.github.io/react-validatable-form-demo",
"license": "MIT",
"author": "ahmetemrekilinc",
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-function-bind": "7.22.5",
"@babel/plugin-syntax-import-assertions": "7.22.5",
"@babel/plugin-transform-react-jsx": "7.22.15",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.15",
"@date-io/date-fns": "2.17.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.14.16",
"@mui/material": "5.14.16",
"@mui/x-date-pickers": "6.17.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.1",
"@vitejs/plugin-react": "4.1.0",
"antd": "5.10.3",
"babel-jest": "29.7.0",
"bootstrap": "5.3.2",
"date-fns": "2.30.0",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.7.0",
"jest-dom": "4.0.0",
"prettier": "3.0.3",
"primereact": "10.0.9",
"react": "18.2.0",
"react-bootstrap": "2.9.1",
"react-dom": "18.2.0",
"react-helmet-async": "1.3.0",
"react-minimal-side-navigation": "1.9.2",
"react-router-dom": "6.18.0",
"react-test-renderer": "18.2.0",
"rollup": "4.2.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-visualizer": "5.9.2",
"vite": "4.5.0",
"web-vitals": "3.5.0"
},
"dependencies": {
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"lodash.unset": "4.5.2"
},
"files": [
"dist"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@4.1.0"
}