-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.19 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.19 KB
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
126
{
"name": "@reef-chain/react-lib",
"version": "5.0.5",
"description": "Reef React Library",
"author": "Reef chain",
"license": "MIT",
"repository": "git@github.com:reef-chain/react-lib.git",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"mb": "microbundle --jsx 'React.createElement' --jsxImportSource react --globals react/jsx-runtime=jsx --format modern,cjs",
"build": "yarn run mb",
"clean": "rm -rf node_modules&&rm -f yarn.lock&&yarn install",
"build:clean": "yarn clean&&yarn build",
"start": "yarn run mb watch --no-compress",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"lint": "yarn prettier ./src && eslint --ext .ts,.tsx ./src/",
"lint:fix": "yarn prettier ./src && eslint --fix --ext .ts,.tsx ./src/",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom"
},
"dependencies": {
"@formo/analytics": "^1.25.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.6.6",
"@reef-chain/evm-provider": "^3.0.0",
"@reef-chain/ui-kit": "^4.0.0",
"@reef-chain/util-lib": "^3.0.3",
"@types/react-router-dom": "^5.3.0",
"axios": "^1.6.5",
"bignumber.js": "^9.1.2",
"bootstrap": "^5.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"ethers": "^5.7.0",
"process": "^0.11.10",
"react-copy-to-clipboard": "^5.0.4",
"react-router-dom": "^5.3.0",
"react-toastify": "^10.0.5",
"react-tooltip": "^4.2.21",
"rxjs": "^7.5.4"
},
"resolutions": {
"ethers": "^5.7.0",
"@polkadot/util": "13.1.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/extension-inject": "0.53.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",
"@reef-chain/evm-provider": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^7.2.1",
"@types/bootstrap": "^5.1.12",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.38",
"@types/react": "^18.2.45",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-dom": "^18.2.18",
"@types/react-tooltip": "^4.2.4",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^2.2.0",
"microbundle": "^0.14.2",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.0",
"tslib": "^2.4.0",
"typescript": "^5.2.2",
"yalc": "^1.0.0-pre.53"
},
"files": [
"dist",
"README.md"
],
"private": false
}