-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.61 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
{
"name": "defi-hardhat-template",
"version": "1.0.0",
"description": "Template for DeFi hardhat projects",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"solhint": "hardhat check",
"prettier:fix": "prettier --write 'contracts/**/*.sol'",
"prettier": "prettier --list-different 'contracts/**/*.sol'",
"lint": "npm run prettier && npm run solhint",
"test": "hardhat test",
"verify": "hardhat etherscan-verify --solc-input",
"deploy": "hardhat deploy",
"mainnet:prepare": "cp .env.mainnet .env",
"mainnet:deploy": "npm-run-all mainnet:prepare deploy",
"mainnet:verify": "npm-run-all mainnet:prepare verify",
"goerli:prepare": "cp .env.goerli .env",
"goerli:deploy": "npm-run-all goerli:prepare deploy",
"goerli:verify": "npm-run-all goerli:prepare verify"
},
"author": "Marcelo Morgado <[email protected]>",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "2.0.0",
"@nomiclabs/hardhat-solhint": "2.0.1",
"@openzeppelin/contracts": "4.8.0",
"@types/chai": "4.3.4",
"@types/mocha": "10.0.1",
"@types/node": "18.11.11",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"dotenv": "16.0.3",
"hardhat-contract-sizer": "2.6.1",
"hardhat-deploy": "0.11.22",
"hardhat-spdx-license-identifier": "2.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.0",
"prettier-plugin-solidity": "1.0.0",
"solc": "0.8.9",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"ts-generator": "0.1.1",
"ts-node": "10.9.1",
"typescript": "4.9.3"
}
}