-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.01 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
{
"name": "optimism-bridge",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "rimraf ./cache && rimraf ./cache-ovm && rimraf ./artifacts && rimraf ./artifacts-ovm",
"compile": "yarn clean && hardhat compile && hardhat --network optimism compile",
"test": "npx hardhat --network hardhat test",
"execute": "ts-node -r tsconfig-paths/register"
},
"devDependencies": {
"@eth-optimism/contracts": "0.4.1",
"@eth-optimism/core-utils": "^0.4.6",
"@eth-optimism/hardhat-ovm": "^0.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@openzeppelin/contracts": "3.3.0",
"ethers": "5.3.1",
"hardhat": "^2.4.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"@eth-optimism/message-relayer": "^0.1.6",
"@eth-optimism/watcher": "^0.0.1-alpha.9",
"@types/node-schedule": "^1.3.2",
"dotenv": "^10.0.0",
"node-schedule": "^2.0.0",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.4",
"winston": "^3.3.3"
}
}