-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.52 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
{
"name": "optimism-box",
"version": "1.0.0",
"description": "",
"scripts": {
"installLocalOptimism": "git clone [email protected]:ethereum-optimism/optimism.git && cd optimism/ops && docker-compose pull",
"startLocalOptimism": "cd optimism/ops && docker-compose up",
"stopLocalOptimism": "cd optimism/ops && docker-compose down -v",
"checkLocalOptimismReady": "cd optimism/ops && scripts/wait-for-sequencer.sh && echo 'System is ready to accept transactions'",
"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",
"exec:evm": "truffle exec",
"exec:ovm": "truffle exec $script --config truffle-config.ovm.js --network $npm_config_network"
},
"repository": {
"type": "git",
"url": "git+https://github.com/truffle-box/optimisim-box.git"
},
"keywords": [],
"author": "Faina Shalts <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/truffle-box/optimism-box/issues"
},
"homepage": "https://github.com/truffle-box/optimism-box#readme",
"devDependencies": {
"@eth-optimism/plugins": "^0.0.20",
"@truffle/hdwallet-provider": "^1.6.0",
"dotenv": "^8.2.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.1"
}
}