forked from aboutlo/swr-eth-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "swr-eth-tutorial",
"version": "0.0.1",
"description": "DApp Data Fetching strategy",
"main": "dist/index.html",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html",
"serve": "serve dist",
"test": "jest --verbose",
"test:watch": "jest --watch",
"lint": "tsc --noEmit"
},
"author": "Lorenzo Sicilia",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"babel-plugin-macros": "^2.8.0",
"jest": "^26.0.1",
"parcel": "^2.0.0-alpha.3.2",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"serve": "^11.3.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@ethersproject/address": "5.0.0-beta.135",
"@ethersproject/bignumber": "^5.0.0-beta.139",
"@ethersproject/contracts": "5.0.0-beta.153",
"@ethersproject/providers": "5.0.0-beta.168",
"@ethersproject/units": "^5.0.0-beta.133",
"@web3-react/core": "^6.0.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/network-connector": "^6.0.9",
"ether-swr": "^0.3.0",
"fast-memoize": "^2.5.2",
"react": "^16.11.0",
"react-cryptocoins": "^1.0.11",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"styled-components": "^5.1.0",
"swr": "0.2.2",
"swr-eth": "^0.1.2"
}
}