forked from Uniswap/web3-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.35 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
{
"private": true,
"name": "web3-react",
"description": "A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps",
"keywords": [
"react",
"react-hooks",
"hooks",
"ethereum",
"javascript",
"typescript",
"web3",
"context",
"frontend",
"dapp",
"metamask",
"walletconnect",
"walletlink",
"frame",
"fortmatic",
"portis",
"squarelink",
"torus",
"authereum",
"magic"
],
"author": "Noah Zinsmeister <noahwz@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/NoahZinsmeister/web3-react.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"publish:lerna": "lerna publish",
"clean": "lerna clean --yes && lerna exec -- rimraf yarn.lock dist/ .rts2_cache_{cjs,esm}/",
"build": "lerna run build",
"start": "lerna run --parallel --no-bail start -- --noClean",
"lint": "lerna run lint --parallel",
"test": "lerna run test --parallel"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"lerna": "^3.19.0",
"react": ">=16.8",
"react-dom": ">=16.8",
"rimraf": "^3.0.1",
"tsdx": "^0.11.0"
},
"license": "GPL-3.0-or-later",
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}