forked from ichifarm/ichi-farming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.7 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
{
"name": "ichi-farming",
"version": "1.0.0",
"license": "No License",
"engines": {
"node": "10.22.x",
"npm": "6.14.x"
},
"devDependencies": {
"@boringcrypto/boring-solidity": "boringcrypto/BoringSolidity#e06e943",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.1",
"@tenderly/hardhat-tenderly": "^1.0.6",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"chai": "^4.3.4",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"env-cmd": "^10.1.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"ganache-cli": "^6.12.2",
"hardhat": "^2.0.8",
"hardhat-abi-exporter": "^2.0.8",
"hardhat-deploy": "^0.7.0-beta.43",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-preprocessor": "^0.1.1",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-watcher": "^2.0.0",
"mocha": "^8.3.2",
"solidity-coverage": "^0.7.13",
"truffle": "^5.1.63",
"truffle-hdwallet-provider": "^1.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"mainnet:deploy": "hardhat --network mainnet deploy",
"mainnet:verify": "hardhat --network mainnet etherscan-verify --solc-input --license UNLICENSED",
"mainnet:export": "hardhat --network mainnet export",
"ropsten:deploy": "hardhat --network ropsten deploy",
"ropsten:verify": "hardhat --network ropsten etherscan-verify --solc-input --license UNLICENSED",
"ropsten:export": "hardhat --network ropsten export",
"kovan:deploy": "hardhat --network kovan deploy",
"kovan:export": "hardhat --network kovan export",
"kovan:verify": "hardhat --network kovan etherscan-verify --solc-input --license UNLICENSED",
"test": "hardhat test",
"test:coverage": "node --max-old-space-size=4096 ./node_modules/.bin/hardhat coverage",
"test:gas": "REPORT_GAS=true yarn test",
"prettier": "prettier --write test/**/*.js",
"ganache": "ganache-cli -f https://mainnet.infura.io/v3/$infura_mainnet --networkId $npm_package_config_ganache_networkId --allowUnlimitedContractSize --gasLimit $npm_package_config_ganache_gasLimit --gasPrice $npm_package_config_ganache_gasPrice --mnemonic \"$MNEMONIC\"",
"dev": "env-cmd concurrently \"npm run ganache\" \"npm run dev-migrate\"",
"dev-migrate": "rm -rf build && truffle migrate --reset --compile-all --network development",
"rebase": "git pull --rebase upstream master"
}
}