-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.45 KB
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
{
"name": "hardhat-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"deploy": "npx hardhat --network hardhat deploy",
"verify": "npx hardhat --network bsc_testnet etherscan-verify --solc-input",
"deploy-rinkeby": "npx hardhat --network rinkeby deploy",
"deploy-bsc-testnet": "npx hardhat --network bsc_testnet deploy",
"deploy-bsc-mainnet": "npx hardhat --network bsc_mainnet deploy",
"deploy-polygon-testnet": "npx hardhat --network polygon_testnet deploy",
"deploy-polygon-mainnet": "npx hardhat --network polygon_mainnet deploy",
"prepare": "husky install",
"format": "prettier --write \"tests/**/*.ts\" \"tasks/**/*.ts\" \"contracts/**/*.sol\" \"deploy/**/*.ts\" \"hardhat.config.ts\"",
"pretty-quick": "pretty-quick --staged",
"coverage": "npm run build && npx hardhat coverage --temp artifacts --network coverage"
},
"devDependencies": {
"@0x/subproviders": "^8.0.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.0.4",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.12",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.24",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"hardhat": "^2.20.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.12.1",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-tracer": "^2.8.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"pretty-quick": "^4.0.0",
"release-please": "^16.9.0",
"solhint": "^4.1.1",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "^5.3.3",
"web3-provider-engine": "^16.0.7"
},
"dependencies": {}
}