-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "credit-protocol",
"license": "BUSL-1.1",
"version": "0.0.0",
"engines": {
"node": ">=14"
},
"volta": {
"node": "16.14.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^5.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"async": "3.2.2",
"chai": "^4.3.6",
"decimal.js": "^10.3.1",
"dotenv": "^16.0.0",
"ethereum-waffle": "^4.0.0-alpha.0",
"ethers": "^5.6.0",
"fast-check": "^2.23.0",
"hardhat": "^2.12.2",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-deploy": "^0.10.6",
"mocha": "^9.2.2",
"solidity-coverage": "^0.7.20",
"ts-node": "^10.7.0",
"typechain": "^7.0.1",
"typescript": "^4.6.2"
},
"resolutions": {
"got": "11.8.5",
"undici": "5.6.1",
"yargs-parser": "21.0.1"
},
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test",
"unit-test": "hardhat test --grep \"unit tests\"",
"fuzz-test": "hardhat test --grep \"fuzzing\"",
"integ-test": "hardhat test --grep \"integration\"",
"e2e": "hardhat test --grep \"end-to-end\"",
"coverage": "hardhat compile && hardhat coverage",
"deploy": "hardhat deploy --network"
},
"dependencies": {
"@openzeppelin/merkle-tree": "^1.0.4",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "1.0.2-solc-0.8-simulate",
"@uniswap/v3-periphery": "^1.4.3"
}
}