forked from Uniswap/web3-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 945 Bytes
/
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
{
"private": true,
"name": "web3-react",
"description": "A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps",
"author": "Noah Zinsmeister <[email protected]>",
"license": "GPL-3.0-or-later",
"engines": {
"node": "14"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"prestart": "yarn build",
"start": "lerna run start --parallel",
"test": "jest",
"clean": "lerna clean --yes",
"prepack": "yarn build"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.0",
"@types/react": "^17.0.21",
"jest": "^27.2.4",
"lerna": "^4.0.0",
"prettier": "2.3.2",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"zustand": "^3.5.10"
}
}