-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
{
"name": "@portkey/did-ui-react",
"keywords": [
"antd",
"portkey"
],
"description": "",
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist/*"
],
"homepage": "https://portkey.finance/",
"repository": {
"type": "git",
"url": "https://github.com/Portkey-Wallet/portkey-web.git",
"directory": "packages/did-ui-react"
},
"version": "2.15.10",
"main": "dist/index.js",
"types": "dist/_types/index.d.ts",
"type": "module",
"scripts": {
"prebuild": "rm -rf dist",
"start": "tsc --watch",
"lint": "eslint . --ext .tsx,.ts",
"lint:md": "remark . -f -q",
"build:clean": "rm -rf dist",
"build:types": "tsc --emitDeclarationOnly",
"build:source": "rollup --silent --config rollup.config.js",
"build:svg": "cd ./src/assets && node getSvg.cjs",
"build": "npm run build:clean && npm run build:types && npm run build:source",
"dev": "rollup --config rollup.config.js --watch",
"release": "yarn version && yarn build",
"modified:less": "lessc --js --modify-var='ant-prefix=portkey-ant' src/assets/theme/antd.less src/assets/theme/modified.antd.css",
"pub": "npm publish"
},
"dependencies": {
"@matt-block/react-recaptcha-v2": "^2.0.0",
"@portkey/accounts": "^2.15.10",
"@portkey/contracts": "^2.15.10",
"@portkey/did": "^2.15.10",
"@portkey/graphql": "^2.15.10",
"@portkey/onboarding": "^2.15.10",
"@portkey/ramp": "^2.15.10",
"@portkey/request": "^2.15.10",
"@portkey/services": "^2.15.10",
"@portkey/socket": "^2.15.10",
"@portkey/types": "^2.15.10",
"@portkey/utils": "^2.15.10",
"@portkey/validator": "^2.15.10",
"@rc-component/portal": "1.0.2",
"antd": "4.24.14",
"antd-mobile": "5.33.0",
"bignumber.js": "^9.1.0",
"clsx": "^1.2.1",
"lottie-web": "5.9.6",
"moment": "^2.29.4",
"query-string": "^7.1.1",
"rc-notification": "^4.0.0",
"react-i18next": "^11.18.6",
"react-qrcode-logo": "2.9.0",
"react-use": "^17.4.0",
"spark-md5": "^3.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/spark-md5": "^3.0.2",
"@types/uuid": "^8.3.4",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"less": "^4.1.3",
"postcss": "^8.4.21"
},
"peerDependencies": {
"aelf-sdk": "^3.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"gitHead": "dc404b8027cfc47c9a1588d0a092ab0469b6ee97"
}