This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.62 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
{
"name": "optimism-bridge-box",
"version": "1.0.0",
"description": "",
"scripts": {
"installLocalOptimism": "git clone [email protected]:ethereum-optimism/optimism.git && cd optimism && yarn install && yarn build",
"startLocalOptimism": "cd optimism/ops && export COMPOSE_DOCKER_CLI_BUILD=1 && export DOCKER_BUILDKIT=1 && docker-compose build && docker-compose up",
"stopLocalOptimism": "cd optimism/ops && docker-compose down -v",
"compile:evm": "truffle compile",
"compile:ovm": "truffle compile --config truffle-config.ovm.js",
"migrate:evm": "truffle migrate",
"migrate:ovm": "truffle migrate --skip-dry-run --config truffle-config.ovm.js --network $npm_config_network",
"test:evm": "truffle test",
"test:ovm": "truffle test --config truffle-config.ovm.js --network $npm_config_network",
"deploy": "zx ./scripts/goerli_bridge_message.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/truffle-box/optimism-bridge-box.git"
},
"keywords": [],
"author": "Kevin Weaver <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/truffle-box/optimism-bridge-box/issues"
},
"homepage": "https://github.com/truffle-box/optimism-bridge-box#readme",
"devDependencies": {
"chai": "^4.3.6"
},
"dependencies": {
"@eth-optimism/contracts": "^0.5.14",
"@eth-optimism/core-utils": "^0.4.4",
"@eth-optimism/plugins": "^0.0.20",
"@eth-optimism/sdk": "^1.1.5",
"@eth-optimism/solc": "0.7.6-alpha.1",
"@truffle/hdwallet-provider": "^2.0.8",
"dotenv": "^8.2.0",
"ethers": "^5.6.6",
"zx": "^4.2.0"
}
}