-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
125 lines (125 loc) · 4.19 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@reachfive/identity-ui",
"version": "1.33.1",
"description": "ReachFive Identity Web UI SDK",
"author": "ReachFive",
"repository": {
"type": "git",
"url": "https://github.com/ReachFive/identity-web-ui-sdk"
},
"license": "MIT",
"type": "module",
"main": "cjs/identity-ui.js",
"module": "es/identity-ui.js",
"types": "types/identity-ui.d.ts",
"exports": {
"require": {
"types": "./types/identity-ui.d.js",
"default": "./cjs/identity-ui.js"
},
"import": {
"types": "./types/identity-ui.d.ts",
"default": "./es/identity-ui.js"
}
},
"scripts": {
"build": "npx rollup --config",
"watch": "npm run build -- --watch",
"test": "npx jest --force-exit",
"test:update": "npm run test -- --update-snapshot",
"typecheck": "tsc --noEmit",
"lint": "eslint -c eslint.config.mjs src/"
},
"dependencies": {
"@reachfive/identity-core": "^1.35.1",
"buffer": "^6.0.3",
"char-info": "0.3.2",
"class-variance-authority": "^0.7.1",
"classnames": "^2.3.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"libphonenumber-js": "^1.12.5",
"lucide-react": "^0.475.0",
"marked": "^15.0.6",
"radix-ui": "^1.1.2",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-phone-number-input": "^3.4.12",
"react-transition-group": "4.4.5",
"validator": "^13.11.0"
},
"peerDependencies": {
"react": "^18.3.0",
"react-dom": "^18.3.0",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@eslint/js": "^9.16.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"@svgr/rollup": "^8.1.0",
"@tailwindcss/postcss": "^4.0.3",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/babel__generator": "^7.6.6",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-test-renderer": "^18.3.0",
"@types/react-transition-group": "^4.4.10",
"@types/styled-components": "^5.1.34",
"@types/validator": "^13.11.2",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"babel-preset-jest": "26.1.0",
"cheerio": "1.0.0-rc.10",
"core-js": "3.6.5",
"eslint": "^8.57.1",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"polished": "^4.2.2",
"postcss": "^8.5.1",
"react-test-renderer": "^18.3.0",
"rollup": "^4.1.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-import-css": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-eslint": "^8.17.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.12.0"
},
"files": [
"cjs",
"es",
"umd",
"types"
],
"resolutions": {
"core-js": "2.5.2"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}