forked from OffchainLabs/arbitrum-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.79 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
{
"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": "./scripts/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",
"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"
},
"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/arb-provider-truffle",
"packages/arb-provider-web3",
"packages/arb-compiler-evm/contract-templates",
"packages/arb-compiler-evm/tests/sol-syscall",
"demos/*",
"workspace/*"
]
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
}
}