@jpmorgan-payments/embedded-finance-components 0.5.53
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/README.md +245 -0
- package/dist/asset/docs/placeholder.pdf +0 -0
- package/dist/esm/ef-components.js +70336 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +1113 -0
- package/dist/mockServiceWorker.js +284 -0
- package/dist/umd/ef-components.js +358 -0
- package/package.json +169 -0
package/package.json
ADDED
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jpmorgan-payments/embedded-finance-components",
|
|
3
|
+
"version": "0.5.53",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "Embedded Finance Components",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"main": "./dist/umd/ef-components.js",
|
|
11
|
+
"module": "./dist/esm/ef-components.js",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/esm/ef-components.js",
|
|
16
|
+
"require": "./dist/umd/ef-components.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "rimraf dist && tsc && vite build",
|
|
21
|
+
"typecheck": "tsc --noEmit",
|
|
22
|
+
"lint": "eslint . --ext .ts,.tsx --cache",
|
|
23
|
+
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
|
|
24
|
+
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
|
|
25
|
+
"vitest": "vitest run",
|
|
26
|
+
"vitest:watch": "vitest",
|
|
27
|
+
"test": "npm run typecheck && npm run prettier && npm run lint && npm run vitest && npm run build",
|
|
28
|
+
"storybook": "storybook dev -p 6006",
|
|
29
|
+
"storybook:build": "storybook build",
|
|
30
|
+
"generate-api": "orval --config ./orval.config.cjs && yarn fix-generated-files && yarn prettify-generated-files",
|
|
31
|
+
"fix-generated-files": "yarn replace '((?:\\s|\\<))(\\d\\S*)Response' '$1N$2Response' ./src/api/generated/*",
|
|
32
|
+
"prettify-generated-files": "npx prettier --write './src/api/generated/*'"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@hookform/resolvers": "^3.6.0",
|
|
36
|
+
"@mantine/form": "^7.5.2",
|
|
37
|
+
"@mantine/hooks": "7.5.1",
|
|
38
|
+
"@radix-ui/react-accordion": "^1.2.0",
|
|
39
|
+
"@radix-ui/react-alert-dialog": "^1.1.1",
|
|
40
|
+
"@radix-ui/react-checkbox": "^1.1.1",
|
|
41
|
+
"@radix-ui/react-collapsible": "^1.1.0",
|
|
42
|
+
"@radix-ui/react-dialog": "^1.1.1",
|
|
43
|
+
"@radix-ui/react-icons": "^1.3.0",
|
|
44
|
+
"@radix-ui/react-label": "^2.1.0",
|
|
45
|
+
"@radix-ui/react-popover": "^1.1.1",
|
|
46
|
+
"@radix-ui/react-radio-group": "^1.2.0",
|
|
47
|
+
"@radix-ui/react-scroll-area": "^1.1.0",
|
|
48
|
+
"@radix-ui/react-select": "^2.1.1",
|
|
49
|
+
"@radix-ui/react-separator": "^1.1.0",
|
|
50
|
+
"@radix-ui/react-slot": "^1.1.0",
|
|
51
|
+
"@radix-ui/react-switch": "^1.1.0",
|
|
52
|
+
"@radix-ui/react-toast": "^1.2.1",
|
|
53
|
+
"@tabler/icons-react": "^3.11.0",
|
|
54
|
+
"@tanstack/react-query": "^5.51.16",
|
|
55
|
+
"@tanstack/react-table": "^8.19.3",
|
|
56
|
+
"axios": "^1.7.2",
|
|
57
|
+
"class-variance-authority": "^0.7.0",
|
|
58
|
+
"clsx": "^2.1.1",
|
|
59
|
+
"cmdk": "1.0.0",
|
|
60
|
+
"colortranslator": "^4.1.0",
|
|
61
|
+
"date-fns": "^3.6.0",
|
|
62
|
+
"deepmerge": "^4.3.1",
|
|
63
|
+
"json-diff-ts": "^4.0.1",
|
|
64
|
+
"libphonenumber-js": "^1.11.5",
|
|
65
|
+
"lucide-react": "^0.418.0",
|
|
66
|
+
"msw": "^2.3.4",
|
|
67
|
+
"next-themes": "^0.3.0",
|
|
68
|
+
"react-day-picker": "^8.10.1",
|
|
69
|
+
"react-dropzone": "^14.2.3",
|
|
70
|
+
"react-error-boundary": "^4.0.13",
|
|
71
|
+
"react-hook-form": "^7.52.1",
|
|
72
|
+
"react-number-format": "^5.4.0",
|
|
73
|
+
"react-phone-number-input": "^3.4.5",
|
|
74
|
+
"react-string-replace": "^1.1.1",
|
|
75
|
+
"sonner": "^1.5.0",
|
|
76
|
+
"tabler-icons-react": "^1.56.0",
|
|
77
|
+
"tailwind-merge": "^2.4.0",
|
|
78
|
+
"tailwindcss-animate": "^1.0.7",
|
|
79
|
+
"truncate": "^3.0.0",
|
|
80
|
+
"usa-states": "^0.0.6",
|
|
81
|
+
"yup": "^1.4.0",
|
|
82
|
+
"zod": "^3.23.8"
|
|
83
|
+
},
|
|
84
|
+
"devDependencies": {
|
|
85
|
+
"@faker-js/faker": "^8.4.1",
|
|
86
|
+
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
|
87
|
+
"@storybook/addon-a11y": "^8.3.5",
|
|
88
|
+
"@storybook/addon-actions": "^8.3.5",
|
|
89
|
+
"@storybook/addon-designs": "^8.0.3",
|
|
90
|
+
"@storybook/addon-essentials": "^8.3.5",
|
|
91
|
+
"@storybook/addon-interactions": "^8.3.5",
|
|
92
|
+
"@storybook/addon-links": "^8.3.5",
|
|
93
|
+
"@storybook/addon-storysource": "^8.3.5",
|
|
94
|
+
"@storybook/addon-toolbars": "^8.3.5",
|
|
95
|
+
"@storybook/blocks": "^8.3.5",
|
|
96
|
+
"@storybook/react": "^8.3.5",
|
|
97
|
+
"@storybook/react-vite": "^8.3.5",
|
|
98
|
+
"@storybook/test": "^8.3.5",
|
|
99
|
+
"@storybook/testing-library": "^0.2.2",
|
|
100
|
+
"@tanstack/react-query-devtools": "^5.51.16",
|
|
101
|
+
"@testing-library/dom": "^9.3.4",
|
|
102
|
+
"@testing-library/react": "^14.3.1",
|
|
103
|
+
"@testing-library/user-event": "^14.5.2",
|
|
104
|
+
"@types/react": "^18.3.3",
|
|
105
|
+
"@types/react-dom": "^18.3.0",
|
|
106
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
107
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
108
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
109
|
+
"autoprefixer": "^10.4.19",
|
|
110
|
+
"eslint": "^8.53.0",
|
|
111
|
+
"eslint-config-airbnb": "19.0.4",
|
|
112
|
+
"eslint-config-airbnb-typescript": "^17.1.0",
|
|
113
|
+
"eslint-config-mantine": "^3.1.0",
|
|
114
|
+
"eslint-config-prettier": "^9.1.0",
|
|
115
|
+
"eslint-plugin-import": "^2.29.1",
|
|
116
|
+
"eslint-plugin-jsx-a11y": "^6.9.0",
|
|
117
|
+
"eslint-plugin-react": "^7.35.0",
|
|
118
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
119
|
+
"eslint-plugin-tailwindcss": "^3.17.4",
|
|
120
|
+
"identity-obj-proxy": "^3.0.0",
|
|
121
|
+
"jsdom": "^24.1.1",
|
|
122
|
+
"msw-storybook-addon": "^2.0.3",
|
|
123
|
+
"orval": "^7.0.1",
|
|
124
|
+
"postcss": "^8.4.40",
|
|
125
|
+
"postcss-preset-mantine": "1.17.0",
|
|
126
|
+
"postcss-simple-vars": "^7.0.1",
|
|
127
|
+
"prettier": "^3.3.3",
|
|
128
|
+
"prettier-plugin-tailwindcss": "^0.6.5",
|
|
129
|
+
"prop-types": "^15.8.1",
|
|
130
|
+
"react": "^18.3.1",
|
|
131
|
+
"react-dom": "^18.3.1",
|
|
132
|
+
"replace": "^1.2.2",
|
|
133
|
+
"rimraf": "^6.0.1",
|
|
134
|
+
"storybook": "^8.3.5",
|
|
135
|
+
"storybook-dark-mode": "^4.0.2",
|
|
136
|
+
"tailwindcss": "^3.4.7",
|
|
137
|
+
"tailwindcss-scoped-preflight": "^3.4.3",
|
|
138
|
+
"typescript": "^5.5.4",
|
|
139
|
+
"vite": "^5.3.5",
|
|
140
|
+
"vite-plugin-dts": "^3.9.1",
|
|
141
|
+
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
142
|
+
"vite-tsconfig-paths": "^4.3.2",
|
|
143
|
+
"vitest": "^2.0.5"
|
|
144
|
+
},
|
|
145
|
+
"peerDependencies": {
|
|
146
|
+
"react": "^18.2.0",
|
|
147
|
+
"react-dom": "^18.2.0"
|
|
148
|
+
},
|
|
149
|
+
"resolutions": {
|
|
150
|
+
"strip-ansi": "6.0.1",
|
|
151
|
+
"braces": "^3.0.3"
|
|
152
|
+
},
|
|
153
|
+
"packageManager": "yarn@4.1.1",
|
|
154
|
+
"publishConfig": {
|
|
155
|
+
"access": "public",
|
|
156
|
+
"registry": "https://registry.npmjs.org/"
|
|
157
|
+
},
|
|
158
|
+
"repository": {
|
|
159
|
+
"type": "git",
|
|
160
|
+
"url": "https://github.com/jpmorgan-payments/embedded-finance.git",
|
|
161
|
+
"directory": "embedded-components"
|
|
162
|
+
},
|
|
163
|
+
"homepage": "https://github.com/jpmorgan-payments/embedded-finance/blob/main/embedded-components/README.md",
|
|
164
|
+
"msw": {
|
|
165
|
+
"workerDirectory": [
|
|
166
|
+
"public"
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
}
|