-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
216 lines (216 loc) · 8.2 KB
/
package.json
File metadata and controls
216 lines (216 loc) · 8.2 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
{
"name": "aginteractive",
"version": "0.0.0",
"description": "Components developed by Jameson R Grieve for use in React/NextJS projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier .",
"prettier-fix": "prettier --write .",
"fix": "prettier --write . && eslint . --ext .js,.jsx,.ts,.tsx --fix",
"compile": "tsc --jsx react-jsx && shx cp -r ./src/Style ./dist && npx postcss ./dist/Style/globals.css -o ./dist/Style/globals.css && shx cp ./tailwind.config.js ./dist",
"storybook": "storybook dev -p 6009",
"storybook-build": "storybook build",
"storybook-deploy": "storybook build && gh-pages -d storybook-static"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesonRGrieve/jrgcomponents.git"
},
"keywords": [
"react",
"nextjs",
"components"
],
"author": "Jameson R Grieve",
"license": "ISC",
"bugs": {
"url": "https://github.com/JamesonRGrieve/jrgcomponents/issues"
},
"homepage": "http://jamesonrgrieve.github.io/jrgcomponents",
"files": [
"dist"
],
"_moduleAliases": {
"@": "."
},
"exports": {
".": "./dist/index.js",
"./tailwind.config.js": "./dist/tailwind.config.js",
"./Theming/SwitchDark": "./dist/Theming/SwitchDark.js",
"./Theming/SwitchColorblind": "./dist/Theming/SwitchColorblind.js",
"./Theming/ThemeWrapper": "./dist/Theming/ThemeWrapper.js",
"./Theming/BuildThemeSet": "./dist/Theming/BuildThemeSet.js",
"./Theming/Sample": "./dist/Theming/sample-theme.js",
"./Theming/ThemeToggle": "./dist/Theming/ThemeToggle.js",
"./Head": "./dist/Meta/Head.js",
"./types/Theming": "./dist/types/Theming.js",
"./Form/Field": "./dist/MUI/Styled/FormControl/Field.js",
"./Dialog": "./dist/Dialog/Dialog.js",
"./EditDialog": "./dist/Dialog/Edit/EditDialog.js",
"./ImageDialog": "./dist/Dialog/Image/ImageDialog.js",
"./DynamicForm": "./dist/Form/DynamicForm.js",
"./Storybook/ComparisonGrid": "./dist/Storybook/ComparisonGrid.js",
"./Storybook/ReferenceGrid": "./dist/Storybook/ReferenceGrid.js",
"./Logging/log": "./dist/Logging/log.js",
"./View/Card": "./dist/View/CardView.js",
"./View/Table": "./dist/View/TableView.js",
"./View/Grid": "./dist/View/GridView.js",
"./SWR/ContentSWR": "./dist/SWR/ContentSWR.js",
"./SWR/MenuSWR": "./dist/SWR/MenuSWR.js",
"./Media/FeatheredImage": "./dist/Media/FeatheredImage.js",
"./Media/AudioPlayer": "./dist/Media/AudioPlayer.js",
"./AppWrapper/Wrapper": "./dist/AppWrapper/AppWrapper.js",
"./AppWrapper/Wrapper/Themed": "./dist/AppWrapper/ThemedAppWrapper.js",
"./AppWrapper/List": "./dist/AppWrapper/List.js",
"./Form/Button/ActionButton": "./dist/MUI/Styled/Button/ActionButton.js",
"./Form/Button/IconButton": "./dist/MUI/Styled/Button/IconButton.js",
"./Header/deprecated": "./dist/AppWrapper/HeaderFooter.js",
"./Footer": "./dist/AppWrapper/HeaderFooter.js",
"./AppWrapper/HeaderFooter": "./dist/AppWrapper/HeaderFooter.js",
"./Style/Global": "./dist/Style/globals.css",
"./QuotaSlider": "./dist/MUI/Styled/Slider/Quota.js",
"./AuthRouter": "./dist/Routing/Auth/Router.js",
"./Middleware": "./dist/Routing/Middleware/Data.js",
"./Middleware/Hooks": "./dist/Routing/Middleware/Hooks.js",
"./Config/Hooks": "./dist/Routing/Config/Hooks.js",
"./MFA/Authenticator": "./dist/Routing/Auth/MFA/Authenticator.js",
"./MFA/EMail": "./dist/Routing/Auth/MFA/EMail.js",
"./MFA/SMS": "./dist/Routing/Auth/MFA/SMS.js",
"./Tabs/Panel": "./dist/Tabs/TabPanel.js",
"./useTheme": "./dist/Theming/useTheme.js",
"./Header": "./dist/AppWrapper/new/Header.js",
"./MobileSideBar": "./dist/AppWrapper/new/MobileSideBar.js",
"./Nav": "./dist/AppWrapper/new/Nav.js",
"./Wrapper": "./dist/AppWrapper/new/Wrapper.js",
"./UserMenu": "./dist/AppWrapper/new/UserMenu.js",
"./NewDialog": "./dist/Dialog/new/Dialog.js"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-alert-dialog": "^1.1.7",
"@radix-ui/react-avatar": "^1.1.4",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-collapsible": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.7",
"@radix-ui/react-progress": "^1.1.3",
"@radix-ui/react-radio-group": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slider": "^1.2.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.4",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.2.0",
"@tanstack/react-table": "^8.21.3",
"autoprefixer": "^10.4.21",
"axios": "^1.8.4",
"class-variance-authority": "^0.7.1",
"clipboard-copy": "^4.0.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cookies-next": "^5.1.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"fs": "^0.0.1-security",
"graphql-request": "^7.1.2",
"graphql-ws": "^5.16.2",
"input-otp": "^1.4.2",
"javascript-time-ago": "^2.5.11",
"katex": "^0.16.22",
"lucide-react": "^0.469.0",
"md5": "^2.3.0",
"mermaid": "^11.6.0",
"motion": "^11.18.2",
"next": "^15.3.0",
"next-pwa": "^5.6.0",
"openai": "^4.94.0",
"pino-pretty": "^13.0.0",
"plyr-react": "^5.3.0",
"react": "^18.3.1",
"react-day-picker": "^9.6.7",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.8",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.55.0",
"react-icons": "^5.5.0",
"react-latex-next": "^3.0.0",
"react-markdown": "^9.1.0",
"react-qr-code": "^2.0.15",
"react-simple-oauth2-login": "^0.5.4",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.1",
"sharp": "^0.33.5",
"swr": "^2.3.3",
"timezones-list": "^3.1.0",
"uuid": "^11.1.0",
"vaul": "^1.1.2",
"workbox-precaching": "^7.3.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@storybook/addon-a11y": "^8.6.12",
"@storybook/addon-coverage": "^1.0.5",
"@storybook/addon-docs": "^8.6.2",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/blocks": "^8.6.10",
"@storybook/jest": "^0.2.2",
"@storybook/manager-api": "^8.6.2",
"@storybook/nextjs": "^8.6.12",
"@storybook/react": "^8.6.10",
"@storybook/test": "^8.6.10",
"@storybook/test-runner": "^0.22.0",
"@storybook/testing-library": "^0.2.2",
"@tailwindcss/postcss": "^4.1.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/md5": "^2.3.5",
"@types/node": "^22.14.1",
"@types/react": "^19.1.2",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-simple-oauth2-login": "^0.5.5",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"axe-playwright": "^2.1.0",
"eslint": "^9.24.0",
"eslint-config-next": "^15.3.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-perf": "^3.3.3",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-storybook": "^0.12.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"msw": "^2.7.4",
"msw-storybook-addon": "^2.0.4",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"storybook": "^8.6.12",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.0.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}