-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.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
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
{
"name": "harvest-finance",
"version": "1.0.0",
"description": "Harvest Finance Smart Contracts w/ Hardhat Integration",
"main": "index.js",
"author": "QuantSoldier <quantsoldier@gmail.com>",
"license": "ISC",
"scripts": {
"lint": "eslint \"**/*.{js,ts}\" && solhint src/**/*.sol",
"lint:fix": "eslint --fix \"**/*.{js,ts}\" && solhint --fix src/**/*.sol",
"format": "prettier --check \"**/*.{ts,js,sol}\"",
"format:fix": "prettier --write \"**/*.{ts,js,sol}\"",
"test": "mocha",
"test:gas": "REPORT_GAS=1 mocha",
"compile": "hardhat compile",
"debug": "DEBUG=true hardhat compile && mocha",
"dev": "hardhat node --watch",
"local:deploy": "hardhat deploy --network localhost",
"local:export": "hardhat export --network localhost --export abi/localhost.json",
"rinkeby:deploy": "hardhat deploy --network rinkeby",
"rinkeby:export": "hardhat export --network rinkeby --export abi/rinkeby.json",
"rinkeby:verify": "hardhat --network rinkeby etherscan-verify",
"mainnet:deploy": "hardhat deploy --network mainnet",
"mainnet:export": "hardhat export --network mainnet --export abi/mainnet.json",
"mainnet:verify": "hardhat --network mainnet etherscan-verify"
},
"devDependencies": {
"@ethereum-waffle/chai": "^3.2.1",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "2.5.0",
"@openzeppelin/contracts-ethereum-package": "2.5.0",
"@openzeppelin/upgrades": "2.5.0",
"@studydefi/money-legos": "^2.4.1",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"ethers": "^5.0.25",
"hardhat": "^2.0.7",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-typechain": "^0.3.4",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3"
}
}