forked from ethereum-optimism/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.39 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.39 KB
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
{
"name": "scripts",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:ethereum-optimism/scripts.git",
"author": "Optimism PBC",
"license": "MIT",
"scripts": {
"start:print-blocks": "ts-node ./scripts/verifier/print-blocks-and-queue-elements.ts",
"diff-dumps:kovan": "ETH_NETWORK=kovan node ./scripts/verifier/diff-verifier-sequencer-state-dump.js",
"diff-dumps:mainnet": "ETH_NETWORK=mainnet node ./scripts/verifier/diff-verifier-sequencer-state-dump.js",
"get-balances": "ts-node ./scripts/get-balances.ts --max_old_space_size=10096",
"withdrawals-dump": "node ./scripts/pre-regen-withdrawals-dump",
"l2-transfer": "ts-node ./scripts/l2-transfer.ts"
},
"dependencies": {
"@eth-optimism/contracts": "0.3.5",
"@eth-optimism/core-utils": "^0.4.5",
"@eth-optimism/data-transport-layer": "^0.1.0",
"@eth-optimism/provider": "^0.0.1-alpha.14",
"@eth-optimism/watcher": "^0.0.1-alpha.9",
"@ethersproject/providers": "^5.0.22",
"@types/node": "^14.14.22",
"bluebird": "^3.7.2",
"colors": "^1.4.0",
"commander": "^7.1.0",
"deep-diff": "^1.0.2",
"diff": "^5.0.0",
"dotenv": "^8.2.0",
"ethers": "^5.0.26",
"prettydiff": "^101.2.6",
"single-line-log": "^1.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@eth-optimism/dev": "^1.1.1",
"synthetix": "^2.39.4"
}
}