-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
108 lines (108 loc) · 5.03 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "magic-internet-money",
"description": "magic-internet-money smart contracts",
"homepage": "https://github.com/Abracadabra-money/magic-internet-money",
"license": "MIT",
"scripts": {
"clean": "hardhat clean",
"build": "hardhat compile",
"rebuild": "hardhat clean && hardhat compile",
"generate:merkle": "npx ts-node scripts/generate_merkle_root.ts",
"node": "cross-env HARDHAT_LOCAL_NODE=1 hardhat node",
"mainnet:deploy": "hardhat --network mainnet deploy",
"mainnet:verify": "hardhat --network mainnet etherscan-verify --solc-input --license GPL-3.0 --force-license --sleep",
"avalanche:deploy": "hardhat --network avalanche deploy",
"avalanche:verify": "hardhat --network avalanche etherscan-verify --solc-input --license GPL-3.0 --force-license --sleep",
"polygon:deploy": "hardhat --network polygon deploy",
"polygon:verify": "hardhat --network polygon etherscan-verify --solc-input --license GPL-3.0 --force-license",
"testnet:deploy": "yarn ropsten:deploy && yarn rinkeby:deploy && yarn goerli:deploy && yarn kovan:deploy && yarn moonbase:deploy && yarn arbitrum:deploy",
"ropsten:deploy": "hardhat --network ropsten deploy",
"ropsten:verify": "hardhat --network ropsten etherscan-verify --solc-input --license GPL-3.0 --force-license",
"rinkeby:deploy": "hardhat --network rinkeby deploy",
"rinkeby:verify": "hardhat --network rinkeby etherscan-verify --solc-input --license GPL-3.0 --force-license",
"goerli:deploy": "hardhat --network goerli deploy",
"goerli:verify": "hardhat --network goerli etherscan-verify --solc-input --license GPL-3.0 --force-license",
"kovan:deploy": "hardhat --network kovan deploy",
"kovan:verify": "hardhat --network kovan etherscan-verify --solc-input --license GPL-3.0 --force-license",
"moonbase:deploy": "hardhat --network moonbase deploy",
"arbitrum:deploy": "hardhat --network arbitrum deploy",
"arbitrum:verify": "hardhat --network arbitrum etherscan-verify --solc-input --license GPL-3.0 --force-license --sleep",
"bsc:deploy": "hardhat --network bsc deploy",
"bsc:verify": "hardhat --network bsc etherscan-verify --solc-input --license GPL-3.0 --force-license",
"fantom:deploy": "hardhat --network fantom deploy",
"fantom:verify": "hardhat --network fantom etherscan-verify --solc-input --license GPL-3.0 --force-license",
"boba:deploy": "hardhat --network boba deploy",
"boba:verify": "hardhat sourcify --network boba",
"moonriver:deploy": "hardhat --network moonriver deploy",
"moonriver:verify": "hardhat --network moonriver etherscan-verify --solc-input --license GPL-3.0 --force-license",
"format": "prettier --write contracts/**/*.sol *.js *.json *.ts test/**/*.ts",
"pretty-quick": "pretty-quick",
"test": "cross-env TS_NODE_TRANSPILE_ONLY=1 hardhat test",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" hardhat coverage",
"test:gas": "cross-env REPORT_GAS=true yarn test"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
],
"*.sol": [
"solhint -c .solhint.json",
"prettier --write",
"yarn test"
],
"*.md": "prettier --write"
},
"devDependencies": {
"@boringcrypto/boring-solidity": "boringcrypto/BoringSolidity#51616f5bbab53adaf6379428de08c9d8093c63f5",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@nomiclabs/hardhat-ethers": "yarn:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "3.0.3",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.5.0",
"@rari-capital/solmate": "6.2.0",
"@sushiswap/bentobox-sdk": "sushiswap/bentobox-sdk#e3f809870b86afbd57e0930662221d2362a160db",
"@sushiswap/core": "^1.4.2",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.1",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.2.1",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.9.2",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "0.11.2",
"hardhat-deploy-ethers": "^0.3.0-beta.11",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.2",
"ipfs-deploy": "^11.2.1",
"keccak256": "^1.0.6",
"lint-staged": "^11.2.3",
"merkletreejs": "^0.2.31",
"mocha-each": "^2.0.1",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"pretty-quick": "^3.1.1",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^10.3.0",
"typechain": "^5.2.0",
"typescript": "^4.4.4",
"yargs": "^17.5.0"
}
}