forked from Uniswap/web3-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 2.78 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "web3-react",
"version": "1.1.1",
"description": "Drop in solution for building single-page Ethereum dApps in React.",
"author": "Noah Zinsmeister <[email protected]>",
"keywords": [
"react",
"react-hooks",
"hooks",
"ethereum",
"solidity",
"javascript",
"web3",
"context",
"frontend",
"dapp"
],
"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"
},
"browser": "dist/",
"scripts": {
"lint": "eslint src/",
"test": "ava",
"coverage": "rm -rf .nyc_output && nyc ava",
"build": "rm -rf dist/ && babel src/ --out-dir dist --copy-files",
"watch": "rm -rf dist/ && babel src/ --out-dir dist --copy-files --watch"
},
"dependencies": {
"ethereumjs-util": "^6.0.0",
"prop-types": "^15.6.2",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"ava": "^1.0.0-rc.2",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"eslint-plugin-ava": "^5.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "0.0.0",
"ignore-styles": "^5.0.1",
"nyc": "^13.1.0",
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"react-test-renderer": "^16.7.0-alpha.2"
},
"peerDependencies": {
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2"
},
"eslintConfig": {
"plugins": [
"react",
"react-hooks",
"ava"
],
"env": {
"es6": true,
"node": true,
"browser": true
},
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:ava/recommended"
],
"rules": {
"react-hooks/rules-of-hooks": "error"
},
"settings": {
"react": {
"version": "16.7.0-alpha.2"
}
}
},
"ava": {
"require": [
"ignore-styles",
"@babel/register",
"@babel/polyfill",
"./__tests__/helpers/setup-browser-env.js"
],
"verbose": true
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}
],
"@babel/react"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import"
]
}
}