-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
77 lines (77 loc) · 2.11 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
{
"name": "@uniswap/redux-multicall",
"version": "1.1.6",
"description": "A React + Redux lib for fetching and caching chain state via the MultiCall contract",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/Uniswap/redux-multicall",
"keywords": [
"uniswap",
"ethereum"
],
"module": "dist/redux-multicall.esm.js",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"contracts:compile": "typechain --target ethers-v5 --out-dir src/abi/types './node_modules/@uniswap/v3-periphery/artifacts/contracts/**/*Multicall*.json'",
"lint": "tsdx lint .",
"test": "tsdx test src",
"test:e2e": "tsdx test integration-tests",
"build": "tsdx build",
"watch": "tsdx watch",
"prepublishOnly": "yarn contracts:compile && yarn build",
"release": "semantic-release"
},
"devDependencies": {
"@ethersproject/abi": "5",
"@ethersproject/bignumber": "5",
"@ethersproject/contracts": "5",
"@ethersproject/providers": "5",
"@reduxjs/toolkit": "^1.6.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@typechain/ethers-v5": "^7.2.0",
"@types/jest": "^25.2.1",
"@types/react": "^17.0.28",
"@types/react-dom": "^17.0.14",
"@uniswap/v3-periphery": "^1.3.0",
"dotenv": "^16.0.3",
"eslint-plugin-prettier": "3.4.1",
"ethers": "^5.4.7",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"semantic-release": "^19.0.5",
"tsdx": "^0.14.1",
"typechain": "^5.2.0"
},
"peerDependencies": {
"@ethersproject/abi": "5",
"@ethersproject/bignumber": "5",
"@ethersproject/contracts": "5",
"@reduxjs/toolkit": "1",
"react": ">=17",
"react-redux": ">=7"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"rules": {
"no-useless-computed-key": "off"
}
}
}