forked from Uniswap/v2-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.78 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
{
"name": "@reservoir-labs/sdk",
"license": "MIT",
"version": "0.2.17",
"description": "🛠 An SDK for building applications on top of Reservoir",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/reservoir-labs/sdk.git",
"keywords": [
"reservoir",
"ethereum"
],
"module": "dist/sdk.esm.js",
"scripts": {
"lint": "tsdx lint src test",
"build": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test",
"prepublishOnly": "tsdx build",
"anvil": "anvil",
"anvil:avax": "anvil -f https://api.avax.network/ext/bc/C/rpc --mnemonic 'fresh gas cattle foster delay vacuum typical negative push churn brush wheel'",
"setupTest": "cd lib/v3-periphery && forge script script/setup_scaffold.s.sol --target-contract SetupScaffold --fork-url \"http://127.0.0.1:8545\" --broadcast --skip-simulation --slow -vvv",
"deployStablePair": "cd lib/v3-periphery && forge script script/deploy_stablepair.s.sol --target-contract DeployStablePair --fork-url \"http://127.0.0.1:8545\" --broadcast -vvv"
},
"dependencies": {
"@ethersproject/address": "^5.0.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/networks": "^5.7.1",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/solidity": "^5.0.0",
"@ethersproject/wallet": "^5.7.0",
"@reservoir-labs/sdk-core": "^3.1.7",
"decimal.js": "^10.4.3",
"jsbi": "^3.1.4",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@types/big.js": "^4.0.5",
"@types/jest": "^24.0.25",
"tsdx": "^0.14.1"
},
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}