-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
93 lines (93 loc) · 3.3 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
{
"name": "tap-token",
"license": "MIT",
"scripts": {
"test": "npx hardhat test",
"coverage": "NODE_ENV=coverage npx hardhat coverage",
"compile": "NODE_ENV=compile hardhat compile --quiet && npm run lint:sol",
"solhint": "solhint contracts/**/*.sol --fix",
"clean": "rm -rf ./cache && rm -rf ./artifacts && rm -rf ./.openzeppelin",
"generate-sdk": "npx hardhat exportSDK",
"prepare": "husky install",
"lint:ts": "eslint . --fix",
"lint:sol": "prettier --write \"./contracts/**/*.sol\" && solhint \"./contracts/**/*.sol\" --fix",
"lint": "npm run lint:ts && npm run lint:sol",
"postinstall": "make"
},
"devDependencies": {
"@boringcrypto/boring-solidity": "git+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/lz-v2-utilities": "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.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.8.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@swc/core": "^1.5.24",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.22",
"@types/lodash": "^4.14.191",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@wagmi/cli": "^0.1.5",
"chai": "^4.3.6",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"ethers": "^5.7.0",
"glob": "^10.3.10",
"hardhat": "2.19.4",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-deploy": "^0.11.45",
"hardhat-gas-reporter": "^1.0.8",
"http-server": "^14.0.0",
"mocha": "^9.1.3",
"prb-math": "^2.4.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc": "^0.8.4",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "8.1.0",
"typescript": "^4.4.3",
"uuid": "^9.0.0",
"write-json-file": "^4.3.0"
},
"dependencies": {
"@layerzerolabs/lz-v2-utilities": "^2.3.16",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@prb/math": "^2.5.0",
"@types/inquirer": "^9.0.3",
"@uniswap/sdk-core": "^4.0.10",
"@uniswap/smart-order-router": "^3.21.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"@uniswap/v3-sdk": "^3.10.2",
"bignumber.js": "^9.1.1",
"hardhat-tracer": "^2.5.0",
"husky": "^8.0.1",
"inquirer": "^8.2.5",
"lodash": "^4.17.21",
"merkletreejs": "^0.3.10",
"tapioca-sdk": "^1.8.28"
},
"resolutions": {
"@ethersproject/providers": "npm:[email protected]"
}
}