forked from OffchainLabs/arbitrum-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.33 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
61
62
63
64
65
{
"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": {
"audit:ci": "audit-ci -l -a 1067409 1067487 1067486",
"install:deps": "./scripts/install-deps",
"install:validator": "./scripts/install-validator",
"update:abi": "yarn go:generate",
"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",
"go:vet": "./scripts/run-go-packages \"go list ./... | grep -v 'arb-node-core/ethbridge[^/]*contracts' | xargs go vet\"",
"go:generate": "./scripts/run-go-packages 'go generate ./...'",
"go:tidy": "./scripts/run-go-packages 'go mod tidy'",
"go:test": "./scripts/run-go-packages 'go test ./...'",
"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",
"npm": "^6.0.0",
"yarn": "^1.0.0"
},
"engine-strict": true,
"private": true,
"workspaces": {
"packages": [
"packages/arb-bridge-eth",
"packages/tools",
"packages/arb-bridge-peripherals",
"packages/arb-os/contracts",
"packages/arb-upgrades"
],
"nohoist": [
"**/@openzeppelin/contracts",
"**/@openzeppelin/contracts-upgradeable"
]
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17"
}
}