-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
51 lines (51 loc) · 1.64 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
{
"name": "new-bedford-contracts-mev",
"version": "1.0.0",
"description": "Compound Liquidation Bot - Contracts MEV",
"main": "src/start.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@truffle/hdwallet-provider": "^1.2.5",
"@uniswap/lib": "^1.1.2",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"big.js": "^5.2.2",
"dotenv-safe": "^8.2.0",
"ethereumjs-tx": "^2.1.2",
"hardhat": "^2.3.0",
"openzeppelin-solidity": "https://github.com/OpenZeppelin/openzeppelin-contracts#974c534210ab3347bdaa45f0f07cfe298a8a6866",
"truffle": "^5.2.6",
"web3": "^1.3.4",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.0",
"ganache-cli": "^6.12.2",
"mocha": "^8.2.1"
},
"scripts": {
"compile": "npx hardhat compile",
"test-latest-block": "npx hardhat test --network hardhat",
"test-latest-block-verbose": "npx hardhat test --network ganache --verbose",
"test-known-block": "KNOWN_BLOCK=true npx hardhat test --network hardhat",
"test-known-block-verbose": "KNOWN_BLOCK=true npx hardhat test --network hardhat --verbose",
"test-awesome-block": "KNOWN_BLOCK=12122486 npx hardhat test --network hardhat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haydenshively/New-Bedford.git"
},
"author": "Hayden Shively",
"license": "UNLICENSED",
"private": true,
"bugs": {
"url": "https://github.com/haydenshively/New-Bedford/issues"
},
"homepage": "https://github.com/haydenshively/New-Bedford#readme"
}