-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.46 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
{
"name": "keeper-payment-contract",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"test": "truffle test",
"deploy:dev": "truffle migrate --network dev --reset",
"deploy:ropsten": "truffle migrate --network ropsten --reset",
"deploy:mainnet": "truffle migrate --network mainnet --reset",
"clean-build": "rm -rf build",
"ganache:dev": "ganache-cli --networkId 1005 --port 8545 --gasLimit 8000000 --gasPrice 100000000000",
"ganache:test": "ganache-cli --networkId 1006 --port 8546 --gasLimit 8000000 --gasPrice 100000000000",
"verify:ropsten": "truffle run verify EthForwarder --network ropsten --license MIT",
"verify:mainnet": "truffle run verify EthForwarder --network mainnet --license MIT",
"deployed-addresses": "truffle networks",
"clean-contracts": "mkdir -p clean_build/contracts && rm -r clean_build/* && python3 scripts/clean.py",
"build-release": "npm run clean-contracts && git checkout release && mkdir -p artifacts/contracts && rm -r artifacts/* && cp -r clean_build/* artifacts/"
},
"author": "Marcin Żółkiewski",
"license": "",
"dependencies": {
"dotenv-flow": "^3.2.0",
"ethers": "^5.0.26",
"ganache-core": "^2.13.2",
"lodash": "^4.17.20",
"openzeppelin-solidity": "^3.3.0",
"solc": "^0.7.6",
"truffle-plugin-verify": "^0.4.1"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.2.1",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.4"
}
}