This repository has been archived by the owner on Oct 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 3.17 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
{
"name": "@reef-defi/react-lib",
"version": "1.8.2",
"description": "Reef React Library",
"author": "Reef chain",
"license": "MIT",
"repository": "[email protected]:reef-defi/reef-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",
"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 --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",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {
"@apollo/client": "^3.6.2",
"@fortawesome/free-regular-svg-icons": "^6.1.0",
"@fortawesome/free-solid-svg-icons": "^6.1.0",
"@polkadot/extension-dapp": "^0.40.4",
"@polkadot/react-identicon": "^0.86.4",
"@reef-chain/util-lib": "^0.6.0",
"@reef-defi/evm-provider": "^1.0.9",
"@reef-defi/extension-base": "^1.0.14",
"@reef-defi/extension-dapp": "^1.0.14",
"@reef-defi/extension-inject": "^1.0.14",
"@reef-chain/ui-kit": "^1.1.4",
"@types/react-router-dom": "^5.3.0",
"axios": "^0.21.4",
"bignumber.js": "^9.0.2",
"bootstrap": "^5.1.1",
"eslint-import-resolver-typescript": "^2.4.0",
"ethers": "^5.7.0",
"graphql": "^16.2.0",
"graphql-ws": "^5.11.2",
"process": "^0.11.10",
"react-copy-to-clipboard": "^5.0.4",
"react-router-dom": "^5.3.0",
"react-tooltip": "^4.2.21",
"rxjs": "^7.5.4",
"zen-observable-ts": "^1.1.0"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"ethers": "^5.7.0"
},
"peerDependencies": {
"react": "^17.0.2"
},
"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": "^17.0.2",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-dom": "^17.0.2",
"@types/react-tooltip": "^4.2.4",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.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.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^2.2.0",
"microbundle": "^0.14.2",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"tslib": "^2.4.0",
"typescript": "^4.6.3",
"yalc": "^1.0.0-pre.53"
},
"files": [
"dist",
"README.md"
]
}