@useloops/design-system 1.4.549 → 1.4.550
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +248 -248
package/package.json
CHANGED
|
@@ -1,259 +1,259 @@
|
|
|
1
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
|
-
"exports": {
|
|
47
|
-
".": {
|
|
48
|
-
"types": "./dist/index.d.ts",
|
|
49
|
-
"import": "./dist/esm/index.js",
|
|
50
|
-
"require": "./dist/index.js"
|
|
51
|
-
},
|
|
52
|
-
"./package.json": "./package.json",
|
|
53
|
-
"./BrandCore": {
|
|
54
|
-
"types": "./dist/BrandCore.d.ts",
|
|
55
|
-
"import": "./dist/esm/BrandCore.js",
|
|
56
|
-
"require": "./dist/BrandCore.js"
|
|
57
|
-
},
|
|
58
|
-
"./Marketing": {
|
|
59
|
-
"types": "./dist/Marketing.d.ts",
|
|
60
|
-
"import": "./dist/esm/Marketing.js",
|
|
61
|
-
"require": "./dist/Marketing.js"
|
|
2
|
+
"name": "@useloops/design-system",
|
|
3
|
+
"version": "1.4.550",
|
|
4
|
+
"description": "The official React based Loops design system",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/esm/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/*",
|
|
10
|
+
"./package.json"
|
|
11
|
+
],
|
|
12
|
+
"typesVersions": {
|
|
13
|
+
"*": {
|
|
14
|
+
"WebCore/*": [
|
|
15
|
+
"./dist/WebCore/*.d.ts"
|
|
16
|
+
],
|
|
17
|
+
"Platform/*": [
|
|
18
|
+
"./dist/Platform/*.d.ts"
|
|
19
|
+
],
|
|
20
|
+
"Marketing/*": [
|
|
21
|
+
"./dist/Marketing/*.d.ts"
|
|
22
|
+
],
|
|
23
|
+
"BrandCore/*": [
|
|
24
|
+
"./dist/BrandCore/*.d.ts"
|
|
25
|
+
],
|
|
26
|
+
"WebCore": [
|
|
27
|
+
"./dist/WebCore.d.ts"
|
|
28
|
+
],
|
|
29
|
+
"Platform": [
|
|
30
|
+
"./dist/Platform.d.ts"
|
|
31
|
+
],
|
|
32
|
+
"Marketing": [
|
|
33
|
+
"./dist/Marketing.d.ts"
|
|
34
|
+
],
|
|
35
|
+
"BrandCore": [
|
|
36
|
+
"./dist/BrandCore.d.ts"
|
|
37
|
+
],
|
|
38
|
+
"theme": [
|
|
39
|
+
"./dist/theme.d.ts"
|
|
40
|
+
],
|
|
41
|
+
"utils": [
|
|
42
|
+
"./dist/utils.d.ts"
|
|
43
|
+
]
|
|
44
|
+
}
|
|
62
45
|
},
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
46
|
+
"exports": {
|
|
47
|
+
".": {
|
|
48
|
+
"types": "./dist/index.d.ts",
|
|
49
|
+
"import": "./dist/esm/index.js",
|
|
50
|
+
"require": "./dist/index.js"
|
|
51
|
+
},
|
|
52
|
+
"./package.json": "./package.json",
|
|
53
|
+
"./BrandCore": {
|
|
54
|
+
"types": "./dist/BrandCore.d.ts",
|
|
55
|
+
"import": "./dist/esm/BrandCore.js",
|
|
56
|
+
"require": "./dist/BrandCore.js"
|
|
57
|
+
},
|
|
58
|
+
"./Marketing": {
|
|
59
|
+
"types": "./dist/Marketing.d.ts",
|
|
60
|
+
"import": "./dist/esm/Marketing.js",
|
|
61
|
+
"require": "./dist/Marketing.js"
|
|
62
|
+
},
|
|
63
|
+
"./Platform": {
|
|
64
|
+
"types": "./dist/Platform.d.ts",
|
|
65
|
+
"import": "./dist/esm/Platform.js",
|
|
66
|
+
"require": "./dist/Platform.js"
|
|
67
|
+
},
|
|
68
|
+
"./WebCore": {
|
|
69
|
+
"types": "./dist/WebCore.d.ts",
|
|
70
|
+
"import": "./dist/esm/WebCore.js",
|
|
71
|
+
"require": "./dist/WebCore.js"
|
|
72
|
+
},
|
|
73
|
+
"./theme": {
|
|
74
|
+
"types": "./dist/theme.d.ts",
|
|
75
|
+
"import": "./dist/esm/theme.js",
|
|
76
|
+
"require": "./dist/theme.js"
|
|
77
|
+
},
|
|
78
|
+
"./utils": {
|
|
79
|
+
"types": "./dist/utils.d.ts",
|
|
80
|
+
"import": "./dist/esm/utils.js",
|
|
81
|
+
"require": "./dist/utils.js"
|
|
82
|
+
},
|
|
83
|
+
"./WebCore/*": {
|
|
84
|
+
"types": "./dist/WebCore/*.d.ts",
|
|
85
|
+
"import": "./dist/esm/WebCore/*.js",
|
|
86
|
+
"require": "./dist/WebCore/*.js"
|
|
87
|
+
},
|
|
88
|
+
"./Platform/*": {
|
|
89
|
+
"types": "./dist/Platform/*.d.ts",
|
|
90
|
+
"import": "./dist/esm/Platform/*.js",
|
|
91
|
+
"require": "./dist/Platform/*.js"
|
|
92
|
+
},
|
|
93
|
+
"./Marketing/*": {
|
|
94
|
+
"types": "./dist/Marketing/*.d.ts",
|
|
95
|
+
"import": "./dist/esm/Marketing/*.js",
|
|
96
|
+
"require": "./dist/Marketing/*.js"
|
|
97
|
+
},
|
|
98
|
+
"./BrandCore/*": {
|
|
99
|
+
"types": "./dist/BrandCore/*.d.ts",
|
|
100
|
+
"import": "./dist/esm/BrandCore/*.js",
|
|
101
|
+
"require": "./dist/BrandCore/*.js"
|
|
102
|
+
}
|
|
67
103
|
},
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
104
|
+
"scripts": {
|
|
105
|
+
"dev": "storybook dev -p 6006 --no-open",
|
|
106
|
+
"clean": "rimraf dist",
|
|
107
|
+
"build": "storybook build -o dist",
|
|
108
|
+
"start": "NODE_ENV=production npx tsx server",
|
|
109
|
+
"package": "bun run clean && rollup -c --bundleConfigAsCjs",
|
|
110
|
+
"test": "bun test --preload ./config/spec/bun-setup.ts",
|
|
111
|
+
"test:unit": "bun test --preload ./config/spec/bun-setup.ts src/ config/",
|
|
112
|
+
"test:watch": "bun test --preload ./config/spec/bun-setup.ts --watch",
|
|
113
|
+
"component": "npx hygen component new",
|
|
114
|
+
"icons": "cd ./scripts/useloops-icon-generator && bun run start",
|
|
115
|
+
"tsc": "tsc"
|
|
72
116
|
},
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"require": "./dist/theme.js"
|
|
117
|
+
"repository": {
|
|
118
|
+
"type": "git",
|
|
119
|
+
"url": "git+https://github.com/useloops/useloops-ds.git"
|
|
77
120
|
},
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
121
|
+
"keywords": [
|
|
122
|
+
"design",
|
|
123
|
+
"react",
|
|
124
|
+
"typescript",
|
|
125
|
+
"ts",
|
|
126
|
+
"material",
|
|
127
|
+
"webpack",
|
|
128
|
+
"system",
|
|
129
|
+
"ui",
|
|
130
|
+
"components",
|
|
131
|
+
"javascript"
|
|
132
|
+
],
|
|
133
|
+
"author": "loops",
|
|
134
|
+
"license": "ISC",
|
|
135
|
+
"bugs": {
|
|
136
|
+
"url": "https://github.com/useloops/useloops-ds/issues"
|
|
82
137
|
},
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
138
|
+
"homepage": "https://github.com/useloops/useloops-ds#readme",
|
|
139
|
+
"devDependencies": {
|
|
140
|
+
"@babel/cli": "^7.25.9",
|
|
141
|
+
"@babel/core": "^7.26.0",
|
|
142
|
+
"@babel/plugin-syntax-jsx": "^7.25.9",
|
|
143
|
+
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
|
|
144
|
+
"@babel/plugin-transform-runtime": "^7.25.9",
|
|
145
|
+
"@babel/preset-env": "^7.26.0",
|
|
146
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
147
|
+
"@chromatic-com/storybook": "^4.1.3",
|
|
148
|
+
"@commitlint/cli": "^19.6.0",
|
|
149
|
+
"@commitlint/config-conventional": "^19.6.0",
|
|
150
|
+
"@commitlint/prompt-cli": "^19.6.0",
|
|
151
|
+
"@commitlint/types": "^19.5.0",
|
|
152
|
+
"@emotion/react": "^11.14.0",
|
|
153
|
+
"@emotion/styled": "^11.14.1",
|
|
154
|
+
"@faker-js/faker": "^9.4.0",
|
|
155
|
+
"@mui/icons-material": "^7.3.4",
|
|
156
|
+
"@mui/material": "^7.3.4",
|
|
157
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
158
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
159
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
160
|
+
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
161
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
162
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
163
|
+
"@storybook/addon-docs": "^10.0.8",
|
|
164
|
+
"@storybook/addon-links": "^10.0.8",
|
|
165
|
+
"@storybook/addon-onboarding": "^10.0.8",
|
|
166
|
+
"@storybook/addon-themes": "^10.0.8",
|
|
167
|
+
"@storybook/react-vite": "^10.0.8",
|
|
168
|
+
"@swc/core": "^1.10.18",
|
|
169
|
+
"@testing-library/react": "^16.3.0",
|
|
170
|
+
"@types/react": "^19.2.2",
|
|
171
|
+
"@types/react-dom": "^19.2.2",
|
|
172
|
+
"@types/stylis": "^4.2.6",
|
|
173
|
+
"@types/uuid": "^10.0.0",
|
|
174
|
+
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
175
|
+
"@typescript-eslint/parser": "^8.20.0",
|
|
176
|
+
"@vitejs/plugin-react-swc": "^4.1.0",
|
|
177
|
+
"bun-types": "^1.3.0",
|
|
178
|
+
"eslint": "^9.14.0",
|
|
179
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
180
|
+
"eslint-plugin-react": "^7.37.2",
|
|
181
|
+
"eslint-plugin-storybook": "^10.0.8",
|
|
182
|
+
"eslint-plugin-unused-imports": "^4.1.4",
|
|
183
|
+
"happy-dom": "^20.0.1",
|
|
184
|
+
"prettier": "^3.3.3",
|
|
185
|
+
"prettier-plugin-organize-imports": "^4.1.0",
|
|
186
|
+
"react": "^19.2.0",
|
|
187
|
+
"react-dom": "^19.2.0",
|
|
188
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
189
|
+
"rimraf": "^6.0.1",
|
|
190
|
+
"rollup": "^4.25.0",
|
|
191
|
+
"rollup-plugin-dts": "^6.1.1",
|
|
192
|
+
"rollup-plugin-node-externals": "^8.0.0",
|
|
193
|
+
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
194
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
195
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
196
|
+
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
197
|
+
"rollup-plugin-svg": "^2.0.0",
|
|
198
|
+
"rollup-preserve-directives": "^1.1.3",
|
|
199
|
+
"storybook": "^10.0.8",
|
|
200
|
+
"tsx": "^4.19.2",
|
|
201
|
+
"typescript": "^5.6.3",
|
|
202
|
+
"vite": "^7.1.10",
|
|
203
|
+
"vite-plugin-svgr": "^4.5.0"
|
|
87
204
|
},
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
205
|
+
"eslintConfig": {
|
|
206
|
+
"extends": [
|
|
207
|
+
"plugin:storybook/recommended"
|
|
208
|
+
]
|
|
92
209
|
},
|
|
93
|
-
"
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
210
|
+
"peerDependencies": {
|
|
211
|
+
"@emotion/react": "^11.14.0",
|
|
212
|
+
"@emotion/styled": "^11.14.1",
|
|
213
|
+
"@mui/icons-material": "^7.3.4",
|
|
214
|
+
"@mui/material": "^7.3.4",
|
|
215
|
+
"react": "^19.2.0",
|
|
216
|
+
"react-dom": "^19.2.0"
|
|
97
217
|
},
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
218
|
+
"dependencies": {
|
|
219
|
+
"@base-ui-components/react": "^1.0.0-beta.4",
|
|
220
|
+
"@dnd-kit/core": "^6.1.0",
|
|
221
|
+
"@dnd-kit/sortable": "^8.0.0",
|
|
222
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
223
|
+
"@gsap/react": "^2.1.1",
|
|
224
|
+
"@hookform/error-message": "^2.0.1",
|
|
225
|
+
"@lottiefiles/dotlottie-react": "^0.13.5",
|
|
226
|
+
"@mui/lab": "^7.0.1-beta.18",
|
|
227
|
+
"@number-flow/react": "^0.5.10",
|
|
228
|
+
"@phrase/i18next-backend": "^1.2.0",
|
|
229
|
+
"@tiptap/extension-image": "^3.7.0",
|
|
230
|
+
"@tiptap/extension-placeholder": "^3.7.0",
|
|
231
|
+
"@tiptap/extension-table": "^3.7.0",
|
|
232
|
+
"@tiptap/extension-underline": "^3.7.0",
|
|
233
|
+
"@tiptap/react": "^3.7.0",
|
|
234
|
+
"@tiptap/starter-kit": "^3.7.0",
|
|
235
|
+
"@use-it/event-listener": "^0.1.7",
|
|
236
|
+
"@zxcvbn-ts/core": "^3.0.4",
|
|
237
|
+
"@zxcvbn-ts/language-common": "^3.0.4",
|
|
238
|
+
"@zxcvbn-ts/language-en": "^3.0.2",
|
|
239
|
+
"check-password-strength": "^3.0.0",
|
|
240
|
+
"dayjs": "^1.11.13",
|
|
241
|
+
"express": "^4.21.1",
|
|
242
|
+
"flag-icons": "^7.3.2",
|
|
243
|
+
"gsap": "^3.12.5",
|
|
244
|
+
"html-react-parser": "^5.2.2",
|
|
245
|
+
"markdown-to-jsx": "^7.1.9",
|
|
246
|
+
"material-ui-popup-state": "^5.3.3",
|
|
247
|
+
"merge-sx": "^3.2.4",
|
|
248
|
+
"motion": "^12.0.6",
|
|
249
|
+
"mui-tiptap": "^1.28.1",
|
|
250
|
+
"react-hook-form": "^7.53.2",
|
|
251
|
+
"react-intersection-observer": "^9.16.0",
|
|
252
|
+
"react-number-format": "^5.4.3",
|
|
253
|
+
"react-phone-number-input": "^3.4.10",
|
|
254
|
+
"react-truncate-list": "^1.0.3",
|
|
255
|
+
"stylis": "^4.3.4",
|
|
256
|
+
"stylis-plugin-rtl": "^2.1.1",
|
|
257
|
+
"yup": "^1.4.0"
|
|
102
258
|
}
|
|
103
|
-
},
|
|
104
|
-
"scripts": {
|
|
105
|
-
"dev": "storybook dev -p 6006 --no-open",
|
|
106
|
-
"clean": "rimraf dist",
|
|
107
|
-
"build": "storybook build public -o dist",
|
|
108
|
-
"start": "NODE_ENV=production npx tsx server",
|
|
109
|
-
"package": "bun run clean && rollup -c --bundleConfigAsCjs",
|
|
110
|
-
"test": "bun test --preload ./config/spec/bun-setup.ts",
|
|
111
|
-
"test:unit": "bun test --preload ./config/spec/bun-setup.ts src/ config/",
|
|
112
|
-
"test:watch": "bun test --preload ./config/spec/bun-setup.ts --watch",
|
|
113
|
-
"component": "npx hygen component new",
|
|
114
|
-
"icons": "cd ./scripts/useloops-icon-generator && bun run start",
|
|
115
|
-
"tsc": "tsc"
|
|
116
|
-
},
|
|
117
|
-
"repository": {
|
|
118
|
-
"type": "git",
|
|
119
|
-
"url": "git+https://github.com/useloops/useloops-ds.git"
|
|
120
|
-
},
|
|
121
|
-
"keywords": [
|
|
122
|
-
"design",
|
|
123
|
-
"react",
|
|
124
|
-
"typescript",
|
|
125
|
-
"ts",
|
|
126
|
-
"material",
|
|
127
|
-
"webpack",
|
|
128
|
-
"system",
|
|
129
|
-
"ui",
|
|
130
|
-
"components",
|
|
131
|
-
"javascript"
|
|
132
|
-
],
|
|
133
|
-
"author": "loops",
|
|
134
|
-
"license": "ISC",
|
|
135
|
-
"bugs": {
|
|
136
|
-
"url": "https://github.com/useloops/useloops-ds/issues"
|
|
137
|
-
},
|
|
138
|
-
"homepage": "https://github.com/useloops/useloops-ds#readme",
|
|
139
|
-
"devDependencies": {
|
|
140
|
-
"@babel/cli": "^7.25.9",
|
|
141
|
-
"@babel/core": "^7.26.0",
|
|
142
|
-
"@babel/plugin-syntax-jsx": "^7.25.9",
|
|
143
|
-
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
|
|
144
|
-
"@babel/plugin-transform-runtime": "^7.25.9",
|
|
145
|
-
"@babel/preset-env": "^7.26.0",
|
|
146
|
-
"@babel/preset-typescript": "^7.26.0",
|
|
147
|
-
"@chromatic-com/storybook": "^4.1.1",
|
|
148
|
-
"@commitlint/cli": "^19.6.0",
|
|
149
|
-
"@commitlint/config-conventional": "^19.6.0",
|
|
150
|
-
"@commitlint/prompt-cli": "^19.6.0",
|
|
151
|
-
"@commitlint/types": "^19.5.0",
|
|
152
|
-
"@emotion/react": "^11.14.0",
|
|
153
|
-
"@emotion/styled": "^11.14.1",
|
|
154
|
-
"@faker-js/faker": "^9.4.0",
|
|
155
|
-
"@mui/icons-material": "^7.3.4",
|
|
156
|
-
"@mui/material": "^7.3.4",
|
|
157
|
-
"@rollup/plugin-babel": "^6.0.4",
|
|
158
|
-
"@rollup/plugin-commonjs": "^26.0.1",
|
|
159
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
160
|
-
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
161
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
162
|
-
"@rollup/plugin-typescript": "^11.1.6",
|
|
163
|
-
"@storybook/addon-docs": "^9.1.13",
|
|
164
|
-
"@storybook/addon-links": "^9.1.13",
|
|
165
|
-
"@storybook/addon-onboarding": "^9.1.13",
|
|
166
|
-
"@storybook/addon-themes": "^9.1.13",
|
|
167
|
-
"@storybook/react-vite": "^9.1.13",
|
|
168
|
-
"@swc/core": "^1.10.18",
|
|
169
|
-
"@testing-library/react": "^16.3.0",
|
|
170
|
-
"@types/react": "^19.2.2",
|
|
171
|
-
"@types/react-dom": "^19.2.2",
|
|
172
|
-
"@types/stylis": "^4.2.6",
|
|
173
|
-
"@types/uuid": "^10.0.0",
|
|
174
|
-
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
175
|
-
"@typescript-eslint/parser": "^8.20.0",
|
|
176
|
-
"@vitejs/plugin-react-swc": "^4.1.0",
|
|
177
|
-
"bun-types": "^1.3.0",
|
|
178
|
-
"eslint": "^9.14.0",
|
|
179
|
-
"eslint-plugin-prettier": "^5.2.1",
|
|
180
|
-
"eslint-plugin-react": "^7.37.2",
|
|
181
|
-
"eslint-plugin-storybook": "^9.1.13",
|
|
182
|
-
"eslint-plugin-unused-imports": "^4.1.4",
|
|
183
|
-
"happy-dom": "^20.0.1",
|
|
184
|
-
"prettier": "^3.3.3",
|
|
185
|
-
"prettier-plugin-organize-imports": "^4.1.0",
|
|
186
|
-
"react": "^19.2.0",
|
|
187
|
-
"react-dom": "^19.2.0",
|
|
188
|
-
"resize-observer-polyfill": "^1.5.1",
|
|
189
|
-
"rimraf": "^6.0.1",
|
|
190
|
-
"rollup": "^4.25.0",
|
|
191
|
-
"rollup-plugin-dts": "^6.1.1",
|
|
192
|
-
"rollup-plugin-node-externals": "^8.0.0",
|
|
193
|
-
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
194
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
195
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
196
|
-
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
197
|
-
"rollup-plugin-svg": "^2.0.0",
|
|
198
|
-
"rollup-preserve-directives": "^1.1.3",
|
|
199
|
-
"storybook": "^9.1.13",
|
|
200
|
-
"tsx": "^4.19.2",
|
|
201
|
-
"typescript": "^5.6.3",
|
|
202
|
-
"vite": "^7.1.10",
|
|
203
|
-
"vite-plugin-svgr": "^4.5.0"
|
|
204
|
-
},
|
|
205
|
-
"eslintConfig": {
|
|
206
|
-
"extends": [
|
|
207
|
-
"plugin:storybook/recommended"
|
|
208
|
-
]
|
|
209
|
-
},
|
|
210
|
-
"peerDependencies": {
|
|
211
|
-
"@emotion/react": "^11.14.0",
|
|
212
|
-
"@emotion/styled": "^11.14.1",
|
|
213
|
-
"@mui/icons-material": "^7.3.4",
|
|
214
|
-
"@mui/material": "^7.3.4",
|
|
215
|
-
"react": "^19.2.0",
|
|
216
|
-
"react-dom": "^19.2.0"
|
|
217
|
-
},
|
|
218
|
-
"dependencies": {
|
|
219
|
-
"@base-ui-components/react": "^1.0.0-beta.4",
|
|
220
|
-
"@dnd-kit/core": "^6.1.0",
|
|
221
|
-
"@dnd-kit/sortable": "^8.0.0",
|
|
222
|
-
"@dnd-kit/utilities": "^3.2.2",
|
|
223
|
-
"@gsap/react": "^2.1.1",
|
|
224
|
-
"@hookform/error-message": "^2.0.1",
|
|
225
|
-
"@lottiefiles/dotlottie-react": "^0.13.5",
|
|
226
|
-
"@mui/lab": "^7.0.1-beta.18",
|
|
227
|
-
"@number-flow/react": "^0.5.10",
|
|
228
|
-
"@phrase/i18next-backend": "^1.2.0",
|
|
229
|
-
"@tiptap/extension-image": "^3.7.0",
|
|
230
|
-
"@tiptap/extension-placeholder": "^3.7.0",
|
|
231
|
-
"@tiptap/extension-table": "^3.7.0",
|
|
232
|
-
"@tiptap/extension-underline": "^3.7.0",
|
|
233
|
-
"@tiptap/react": "^3.7.0",
|
|
234
|
-
"@tiptap/starter-kit": "^3.7.0",
|
|
235
|
-
"@use-it/event-listener": "^0.1.7",
|
|
236
|
-
"@zxcvbn-ts/core": "^3.0.4",
|
|
237
|
-
"@zxcvbn-ts/language-common": "^3.0.4",
|
|
238
|
-
"@zxcvbn-ts/language-en": "^3.0.2",
|
|
239
|
-
"check-password-strength": "^3.0.0",
|
|
240
|
-
"dayjs": "^1.11.13",
|
|
241
|
-
"express": "^4.21.1",
|
|
242
|
-
"flag-icons": "^7.3.2",
|
|
243
|
-
"gsap": "^3.12.5",
|
|
244
|
-
"html-react-parser": "^5.2.2",
|
|
245
|
-
"markdown-to-jsx": "^7.1.9",
|
|
246
|
-
"material-ui-popup-state": "^5.3.3",
|
|
247
|
-
"merge-sx": "^3.2.4",
|
|
248
|
-
"motion": "^12.0.6",
|
|
249
|
-
"mui-tiptap": "^1.28.1",
|
|
250
|
-
"react-hook-form": "^7.53.2",
|
|
251
|
-
"react-intersection-observer": "^9.16.0",
|
|
252
|
-
"react-number-format": "^5.4.3",
|
|
253
|
-
"react-phone-number-input": "^3.4.10",
|
|
254
|
-
"react-truncate-list": "^1.0.3",
|
|
255
|
-
"stylis": "^4.3.4",
|
|
256
|
-
"stylis-plugin-rtl": "^2.1.1",
|
|
257
|
-
"yup": "^1.4.0"
|
|
258
|
-
}
|
|
259
259
|
}
|