-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
98 lines (98 loc) · 4.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "tapioca-mocks",
"scripts": {
"clean": "npx hardhat --config hardhat.export.ts clean",
"compile": "npx hardhat --config hardhat.export.ts compile",
"typechain": "npx hardhat --config hardhat.export.ts typechain",
"coverage": "npm run clean && npm run typechain && hh --config hardhat.export.ts coverage",
"gen:sdk": "npx hardhat exportSDK --network",
"list": "npx hardhat listDeploy --network",
"size": "npx hardhat size-contracts",
"test": "npx hardhat test",
"test:ethereum": "NETWORK=ethereum FROM_BLOCK=19179440 hardhat test",
"test:zerox": "NETWORK=ethereum hardhat test test_hardhat/zeroXSwapper.test.ts",
"test:arb": "NETWORK=arbitrum FROM_BLOCK=145526897 hardhat test test_hardhat/seer.oracle.test.ts",
"prepare": "husky install",
"lint:ts": "eslint . --fix --ext ts",
"lint:sol": "prettier --write \"./contracts/**/*.sol\" && solhint \"./contracts/**/*.sol\" --fix",
"lint": "npm run lint:ts && npm run lint:sol",
"contracts_size": "npm run compile && NODE_ENV=hardhat hardhat size-contracts"
},
"devDependencies": {
"@boringcrypto/boring-solidity": "https://github.com/boringcrypto/BoringSolidity#e0ff4a7771edfa09a90694c4e0f891938cf62a43",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@layerzerolabs/lz-evm-messagelib-v2": "2.3.6",
"@layerzerolabs/lz-evm-oapp-v2": "^2.3.6",
"@layerzerolabs/lz-evm-protocol-v2": "2.3.6",
"@layerzerolabs/lz-evm-v1-0.7": "2.3.6",
"@layerzerolabs/solidity-bytes-utils": "^0.8.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^4.9.3",
"@rari-capital/solmate": "^6.4.0",
"@swc/core": "^1.5.24",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.22",
"@types/lodash": "^4.14.185",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"chai": "^4.3.6",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eth-sig-util": "^3.0.1",
"ethereumjs-utils": "^5.2.5",
"ethers": "^5.7.0",
"hardhat": "2.19.4",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-deploy": "^0.9.6",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-tracer": "2.7.0",
"hardhat-watcher": "^2.5.0",
"http-server": "^14.0.0",
"husky": "^8.0.3",
"mocha": "^9.1.3",
"prb-math": "^2.4.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc": "^0.8.18",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.7.0",
"typechain": "^8.1.0",
"typescript": "^4.4.3",
"write-json-file": "4.3.0"
},
"dependencies": {
"@balancer-labs/balancer-js": "^2.0.0",
"@balancer-labs/sdk": "^1.1.5",
"@balancer-labs/v2-vault": "^3.0.1",
"@chainlink/contracts": "^0.6.1",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@types/inquirer": "^9.0.3",
"@types/uuid": "^9.0.1",
"@uniswap/v3-sdk": "^3.11.0",
"bignumber.js": "^9.1.2",
"hardhat-ignore-warnings": "^0.2.11",
"inquirer": "^8.2.5",
"load-json-file": "^7.0.1",
"lodash": "^4.17.21",
"solady": "^0.0.104",
"tapioca-sdk": "^1.8.28",
"tsconfig-paths": "^4.2.0",
"uuid": "^9.0.0"
},
"resolutions": {
"@ethersproject/providers": "npm:[email protected]"
}
}