-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "optimistic-wrapped-withdraws",
"version": "1.0.0",
"description": "Wrap a L2 withdrawal event as an ERC1155 subtoken on L1",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"open-coverage-report": "if [ $(uname) = 'Darwin' ]; then open ./coverage/index.html; fi",
"deploy": "hardhat deploy",
"verify": "hardhat verify"
},
"author": "t11s",
"license": "AGPL-3.0-only",
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@typechain/ethers-v5": "^4.0.0",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"ganache-time-traveler": "^1.0.15",
"hardhat": "^2.0.7",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-preprocessor": "^0.1.1",
"hardhat-typechain": "^0.3.4",
"solidity-coverage": "^0.7.13",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3",
"web3": "^1.3.1"
},
"dependencies": {
"@eth-optimism/contracts": "^0.1.4",
"@eth-optimism/plugins": "0.0.7",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.3.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.26"
}
}