forked from Uniswap/web3-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.04 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
{
"name": "web3-react",
"version": "5.0.4",
"description": "A simple, powerful framework for building modern Ethereum dApps using React.",
"author": "Noah Zinsmeister <noahwz@gmail.com>",
"keywords": [
"react",
"react-hooks",
"hooks",
"ethereum",
"solidity",
"javascript",
"web3",
"context",
"frontend",
"dapp",
"metamask",
"trust-wallet",
"tokenary",
"trezor",
"ledger",
"infura",
"quiknode",
"walletconnect",
"formatic",
"portis"
],
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/NoahZinsmeister/web3-react.git"
},
"homepage": "https://github.com/NoahZinsmeister/web3-react#readme",
"bugs": {
"url": "https://github.com/NoahZinsmeister/web3-react/issues"
},
"main": "./dist/index.js",
"scripts": {
"check:lint": "yarn eslint ./src/**/* ./__tests__/**/* --ext .ts,.tsx,.js,.jsx",
"check:format": "yarn prettier --check './src/**/*' './__tests__/**/*'",
"check:all": "yarn check:lint && yarn check:format",
"prebuild": "rm -rf dist/",
"build": "tsc",
"watch": "yarn prebuild && tsc --watch",
"test": "jest",
"coverage": "jest --coverage --coverageReporters=text-lcov"
},
"dependencies": {
"@0x/subproviders": "^4.0.5"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"ethers": "^4",
"jest": "^24.6.0",
"jest-dom": "^3.1.3",
"prettier": "^1.16.4",
"react": "^16.8",
"react-dom": "^16.8",
"react-testing-library": "^6.1.2",
"ts-jest": "^24.0.1",
"typescript": "^3.4.1"
},
"peerDependencies": {
"ethers": "^4",
"react": "^16.8",
"react-dom": "^16.8"
}
}