forked from Uniswap/web3-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 961 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
35
36
37
38
{
"private": true,
"name": "web3-react",
"engines": {
"node": "^16 || ^18"
},
"scripts": {
"clean": "lerna clean --yes",
"lint": "yarn run eslint --ext .ts,.tsx .",
"test": "jest",
"build": "lerna run build",
"prestart": "yarn build",
"start": "lerna run start --parallel",
"prepack": "yarn build"
},
"workspaces": [
"packages/*",
"example"
],
"devDependencies": {
"@coinbase/wallet-sdk": "^3.3.0",
"@testing-library/react-hooks": "^8.0.0",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@types/react": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@uniswap/eslint-config": "^1.1.1",
"eslint": "^8.13.0",
"jest": "^27.5.1",
"lerna": "^5",
"react": "^18.0.0",
"react-test-renderer": "^18.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}