This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 1.51 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
{
"name": "arbitrum-box",
"version": "1.0.0",
"description": "Boilerplate code to compile, migrate, and test a Truffle project on Arbitrum",
"main": "truffle-config.arbitrum.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run test:arbitrum --network=$network",
"installLocalArbitrum": "git clone -b master https://github.com/offchainlabs/arbitrum.git",
"startLocalEthereum": "cd arbitrum && git submodule update --init --recursive && yarn && yarn docker:build:geth && yarn docker:geth",
"startLocalArbitrum": "cd arbitrum && yarn demo:initialize && yarn demo:deploy",
"compile:ethereum": "truffle compile",
"compile:arbitrum": "truffle compile --config truffle-config.arbitrum.js",
"migrate:ethereum": "truffle migrate",
"migrate:arbitrum": "truffle migrate --config truffle-config.arbitrum.js --network $npm_config_network",
"test:ethereum": "truffle test",
"test:arbitrum": "truffle test --config truffle-config.arbitrum.js --network $npm_config_network"
},
"repository": {
"type": "git",
"url": "git+https://github.com/truffle-box/arbitrum-box.git"
},
"keywords": [
"Arbitrum",
"Ethereum",
"Truffle",
"Layer",
"2"
],
"author": "Faina Shalts",
"license": "MIT",
"bugs": {
"url": "https://github.com/truffle-box/arbitrum-box/issues"
},
"homepage": "https://github.com/truffle-box/arbitrum-box#readme",
"dependencies": {},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.4.1",
"dotenv": "^10.0.0"
}
}