-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"files": [
"src/**/*.sol"
],
"devDependencies": {
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-chai-matchers": "1.0.4",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"@uniswap/router-sdk": "^1.3.0",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/snapshot-gas-cost": "^1.0.0",
"@uniswap/v2-sdk": "^3.0.1",
"@uniswap/v3-sdk": "^3.8.3",
"bignumber.js": "^9.0.0",
"chai": "^4.3.4",
"ethers": "^5.7.2",
"hardhat": "^2.12.2",
"hardhat-typechain": "^0.3.5",
"mocha-chai-jest-snapshot": "^1.1.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"ts-generator": "^0.1.1",
"ts-node": "^8.5.4",
"typechain": "^4.0.0",
"typescript": "^3.7.3"
},
"lint-staged": {
"{src,script,test}/**/*.sol": [
"forge fmt"
]
},
"scripts": {
"prepare": "husky install",
"compile": "hardhat compile",
"test": "hardhat test"
}
}