-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
93 lines (93 loc) · 2.98 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
{
"name": "react-dapp-web3",
"version": "3.0.1",
"description": "Easy Web3, Metamask and WalletConnect integration package. HOC and custom hook to manage wallet address, connection and signature.",
"url": "https://github.com/R4k4210/react-dapp-web3/issues",
"keywords": [
"web3",
"walletconnect",
"metamask",
"web3-provider",
"hoc",
"hook"
],
"author": "Santiago Chopitea <santiagochopitea@gmail.com> (https://github.com/R4k4210)",
"license": "MIT",
"homepage": "https://github.com/R4k4210/react-dapp-web3#readme",
"repository": "github:R4k4210/react-dapp-web3",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "rollup -c",
"watch": "rollup -cw",
"lint": "eslint . --ext .tsx",
"lint-and-fix": "eslint . --ext .tsx --fix",
"prettier-format": "prettier --write src/**/*.{tsx,ts,js}",
"prettier-check": "prettier --check src/**/*.{tsx,ts,js}",
"prepublish": "yarn build"
},
"jest": {
"testEnvironment": "jsdom",
"preset": "ts-jest",
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest"
}
},
"dependencies": {
"assert": "^2.0.0",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-jest": "^27.0.5",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/react-hooks": "^7.0.1",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.0.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-loader": "^8.2.2",
"dotenv": "^10.0.0",
"eslint": "^8.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^17.0.2",
"rollup": "^2.56.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"@walletconnect/ethereum-provider": "^2.4.4",
"web3": "^1.3.6"
},
"peerDependencies": {
"@walletconnect/ethereum-provider": "^2.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.3.5",
"web3": "^1.3.6"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}