-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 2 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
{
"devDependencies": {
"@eth-optimism/hardhat-ovm": "^0.2.2",
"@eth-optimism/ovm-toolchain": "0.0.2-alpha.2",
"@eth-optimism/plugins": "0.0.12",
"@eth-optimism/solc": "^0.5.16-alpha.7",
"@ethersproject/hardware-wallets": "^5.3.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.8.2",
"@openzeppelin/truffle-upgrades": "^1.5.0",
"@types/mocha": "^8.2.1",
"@types/node": "^15.12.2",
"bignumber.js": "^9.0.1",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.3.1",
"hardhat": "^2.0.10",
"hardhat-deploy": "^0.7.6",
"node-gyp": "^8.1.0",
"openzeppelin-solidity": "^2.5.1",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"truffle": "^5.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"web3": "^1.3.6",
"web3-eth-abi": "^1.3.3"
},
"dependencies": {
"@openzeppelin/contracts": "3.4",
"bindings": "^1.5.0",
"cachedown": "^1.0.0",
"dotenv": "^8.2.0",
"heap": "^0.2.6",
"level-sublevel": "^6.6.5",
"libxmljs": "^0.19.7",
"truffle-hdwallet-provider": "^1.0.17",
"usb": "^1.7.1",
"web3-provider-engine": "^16.0.1"
},
"scripts": {
"compile:ovm": "npx hardhat compile",
"test:pools": "truffle test ./test/3_pool_test.js --network pools",
"test:poolsE": "truffle test ./test/3_pool_test.js --network pools --show-events",
"test": "truffle test",
"clean": "npx prettier --write 'contracts/**/*.sol'",
"poolsBot": "node ./strategist/kovanPoolsStrategist.js",
"validate": "node ./scripts/validateMigrations.js",
"poolsData": "node ./scripts/poolsData.js",
"deployKovan": "npx hardhat deploy --network optimismKovan",
"ganache": "ganache-cli --gasLimit=0x1fffffffffffff --gasPrice=0x1 --allowUnlimitedContractSize --defaultBalanceEther 9000"
}
}