forked from OffchainLabs/arbitrum-classic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.12 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "arbitrum",
"version": "0.2.0",
"description": "The Arbitrum Monorepo",
"author": "Offchain Labs, Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/OffchainLabs/arbitrum.git"
},
"bugs": {
"url": "https://github.com/offchainlabs/arbitrum/issues"
},
"homepage": "https://offchainlabs.com/",
"scripts": {
"install:deps": "./scripts/install-deps",
"install:ci": "./scripts/install-ci",
"install:validator": "./scripts/install-validator",
"update-abi": "yarn go:generate && yarn workspace arb-provider-ethers update-abi",
"build": "yarn workspace arb-provider-ethers build",
"docker:build:parity": "yarn workspace arb-bridge-eth docker:build:parity",
"docker:build:ganache": "yarn workspace arb-bridge-eth docker:build:ganache",
"run:local:geth": "yarn workspace arb-bridge-eth run:local:geth",
"kill:geth": "kill $(lsof -t -i:7545)",
"docker:build:geth": "yarn workspace arb-bridge-eth docker:build:geth",
"docker:parity": "yarn workspace arb-bridge-eth docker:parity",
"docker:ganache": "yarn workspace arb-bridge-eth docker:ganache",
"docker:geth": "yarn workspace arb-bridge-eth docker:geth",
"prepare": "yarn workspace arb-provider-ethers prepare",
"go:vet": "./scripts/go-vet",
"go:generate": "./scripts/go-generate",
"demo:initialize": "yarn workspace tools demo:initialize",
"demo:deploy": "./scripts/arb_deploy.py local",
"prod:initialize": "yarn workspace tools prod:initialize",
"deploy:validators": "./scripts/arb_deploy.py"
},
"engines": {
"node": ">= 8.0.0 < 13.0.0",
"npm": "^6.0.0",
"yarn": "^1.0.0"
},
"engine-strict": true,
"private": true,
"workspaces": {
"packages": [
"packages/arb-bridge-eth",
"packages/arb-provider-ethers",
"packages/arbos-contracts",
"packages/tools"
]
},
"devDependencies": {
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54"
}
}