-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.49 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.49 KB
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
{
"name": "react-rich-ui",
"version": "2.5.1",
"description": "React UI framework with lots of built-in UI components (forms, data table, steps wizards, etc...)",
"keywords": [
"React",
"React Component",
"form",
"table",
"button",
"modal",
"date picker",
"time picker",
"from control",
"steps wizard",
"wizard"
],
"author": "Khalid H. Alharisi",
"license": "Apache-2.0",
"homepage": "https://react-rich-ui.coder966.net",
"repository": {
"type": "git",
"url": "https://github.com/coder966/react-rich-ui"
},
"private": false,
"type": "module",
"main": "dist/react-rich-ui.cjs",
"module": "dist/react-rich-ui.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"dependencies": {
"@hookform/resolvers": "~5.2.2",
"intl-date": "~0.3.0",
"react-hook-form": "~7.66.1",
"react-select": "~5.10.2",
"react-select-async-paginate": "~0.7.11"
},
"peerDependencies": {
"react": ">=16.8.0 || >=17.0.0 || >=18.0.0 || >=19.0.0",
"react-dom": ">=16.8.0 || >=17.0.0 || >=18.0.0 || >=19.0.0",
"yup": ">=1.0.0"
},
"peerDependenciesMeta": {
"yup": {
"optional": true
}
},
"devDependencies": {
"@chromatic-com/storybook": "~4.1.3",
"@storybook/addon-docs": "~10.0.8",
"@storybook/addon-links": "~10.0.8",
"@storybook/addon-onboarding": "~10.0.8",
"@storybook/react-vite": "~10.0.8",
"@testing-library/react": "~16.3.0",
"@testing-library/user-event": "~14.6.1",
"@types/jest": "~30.0.0",
"@types/node": "~22.19.1",
"@types/react": "~19.2.7",
"@types/react-dom": "~19.2.3",
"@typescript-eslint/eslint-plugin": "~8.48.0",
"@typescript-eslint/parser": "~8.48.0",
"@vitejs/plugin-react": "~5.1.1",
"bootstrap": "~5.3.8",
"eslint": "~9.39.1",
"eslint-plugin-react-hooks": "~7.0.1",
"eslint-plugin-react-refresh": "~0.4.24",
"eslint-plugin-storybook": "~10.0.8",
"jest": "~30.2.0",
"jest-environment-jsdom": "~30.2.0",
"jest-transform-css": "~6.0.3",
"prettier": "~3.6.2",
"react": "~19.2.0",
"react-dom": "~19.2.0",
"rollup-plugin-exclude-dependencies-from-bundle": "~1.1.24",
"storybook": "~10.0.8",
"ts-jest": "~29.4.5",
"typescript": "~5.9.3",
"vite": "~7.2.4",
"vite-plugin-dts": "~4.5.4",
"yup": "~1.7.1"
},
"scripts": {
"start": "storybook dev -p 6006",
"build": "tsc && vite build",
"prepare": "npm run build",
"test": "jest"
}
}