-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.92 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
{
"name": "@derion/utr",
"description": "Universal Token Router by Derion",
"version": "1.1.0",
"license": "MIT",
"scripts": {
"clean": "rimraf ./build/ ./cache/ ./artifacts/",
"prettier": "prettier --write **/*.sol",
"compile": "hardhat compile",
"build": "hardhat compile && cp artifacts/contracts/UniversalTokenRouter.sol/UniversalTokenRouter.json build/",
"test": "hardhat test",
"lint": "hardhat check",
"deploy": "hardhat run scripts/sf.deploy.js",
"coverage": "hardhat coverage",
"verify": "hardhat verify"
},
"dependencies": {
"@atixlabs/hardhat-time-n-mine": "^0.0.5",
"@uniswap/lib": "^4.0.1-alpha",
"bn.js": "^5.2.1",
"canonical-weth": "^1.4.0",
"config-js": "^1.1.15",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.1",
"merkletreejs": "^0.2.32"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@openzeppelin/test-helpers": "^0.5.13",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.22.16",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.12",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.4"
}
}