forked from ethersphere/bzzaar-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.43 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
{
"name": "swarm-curve",
"version": "1.0.0",
"main": "index.js",
"repository": "https://gitlab.com/linumlabs/swarm-curve.git",
"author": "Veronica <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "etherlime compile --runs=500 --solcVersion=0.5.0 --exportAbi",
"start": "etherlime ganache -q --networkId=1337 --gasLimit=10000000",
"test": "etherlime test --solcVersion=0.5.0 --output=none --timeout 100000 --gas-report=true",
"test-one": "etherlime test ./test/Curve.test.js --output=none --timeout 100000 --gas-report=true",
"remixd": "remixd -s ./contracts --remix-ide https://remix.ethereum.org",
"cover": "etherlime coverage --runs=500 --solcVersion=0.5.0 --timeout=100000",
"deploy:local": "etherlime deploy --compile=false --network=local --runs=500",
"deploy:rinkeby": "etherlime deploy --compile=false --network=rinkeby --runs=500",
"deploy:goerli": "etherlime deploy --compile=false --network=goerli --runs=500",
"deploy:mainnet": "etherlime deploy --compile=false --network=mainnet --runs=500",
"flat": "etherlime flatten Eth_portal.sol --solcVersion=0.5.0",
"clean": "rm -rf build && rm -rf contracts/artifacts && rm -rf .etherlime-store"
},
"dependencies": {
"@openzeppelin/contracts": "2.5.0",
"dotenv": "8.0.0",
"etherlime": "2.3.5",
"etherlime-lib": "1.2.3",
"ethers": "5.0.15",
"remixd": "^0.2.4-alpha.0"
}
}