-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.82 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
{
"name": "@reef-chain/ui-kit",
"version": "4.0.0",
"private": false,
"files": [
"dist",
"src/",
"index.js",
"LICENSE",
"README.md"
],
"repository": "https://github.com/reef-chain/ui-kit",
"main": "./dist/index.es.js",
"types": "./dist/ui-kit/index.d.ts",
"module": "./index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./index.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:clean": "rm -rf node_modules && rm -f yarn.lock && yarn install && yarn build",
"showcase": "tsc && vite build --mode=showcase"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/free-regular-svg-icons": "^6.1.0",
"@fortawesome/free-solid-svg-icons": "^6.1.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@polkadot/react-identicon": "^3.10.1",
"@reef-chain/util-lib": "3.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.0",
"bignumber.js": "^9.0.2",
"qrcode.react": "^3.0.1",
"react-localization": "^1.0.19",
"react-syntax-highlighter": "^15.5.0",
"react-transition-group": "^4.4.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"resolutions": {
"@polkadot/util": "13.1.1",
"@polkadot/extension-inject": "0.53.1",
"@polkadot/api-augment": "^13.2.1",
"@polkadot/rpc-core": "^13.2.1",
"@polkadot/types-create": "^13.2.1",
"@polkadot/api": "^13.2.1",
"@polkadot/api-base": "^13.2.1",
"@polkadot/api-contract": "^13.2.1",
"@polkadot/api-derive": "^13.2.1",
"@polkadot/hw-ledger": "^13.1.1",
"@polkadot/keyring": "^13.1.1",
"@polkadot/networks": "^13.1.1",
"@polkadot/phishing": "^0.23.6",
"@polkadot/rpc-augment": "^13.2.1",
"@polkadot/rpc-provider": "^13.2.1",
"@polkadot/types": "^13.2.1",
"@polkadot/types-augment": "^13.2.1",
"@polkadot/types-codec": "^13.2.1",
"@polkadot/types-known": "^13.2.1",
"@polkadot/types-support": "^13.2.1",
"@polkadot/util-crypto": "^13.1.1",
"@polkadot/wasm-crypto": "^7.3.2",
"@polkadot/x-bigint": "^13.1.1",
"@polkadot/x-fetch": "^13.1.1",
"@polkadot/x-global": "^13.1.1",
"@polkadot/x-randomvalues": "^13.1.1",
"@polkadot/x-textdecoder": "^13.1.1",
"@polkadot/x-textencoder": "^13.1.1",
"@polkadot/x-ws": "^13.1.1"
},
"devDependencies": {
"@types/eslint": "^8.4.2",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "8.0.0",
"eslint-config-react-app": "^7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.49.9",
"typescript": "^4.6.3",
"vite": "^5.1.3",
"vite-plugin-checker": "^0.4.6",
"vite-plugin-dts": "^1.1.1",
"vite-plugin-eslint": "^1.6.1",
"yalc": "^1.0.0-pre.53"
}
}