-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 3.15 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
{
"name": "@turbo-lab/template-hardhat-sol",
"version": "0.0.0-beta.0",
"description": "Smart Contract Boilerplate using Hardhat",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "hardhat --show-stack-traces --max-memory 8192 compile",
"clean": "rm -rf cache/ artifacts/",
"compile": "hardhat --show-stack-traces --max-memory 8192 compile",
"coverage": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat coverage",
"chain": "hardhat node --network hardhat",
"chain:fork": "FORK_ENABLED=true hardhat node --network hardhat",
"deploy": "hardhat deploy --write true",
"deploy:mainnet": "hardhat deploy --write true --network mainnet",
"deploy:testnet": "hardhat deploy --write true --network testnet",
"deploy:polygon:mainnet": "hardhat deploy --write true --network polygonMainnet",
"deploy:polygon:testnet": "hardhat deploy --write true --network polygonTestnet",
"deploy:optimism:mainnet": "hardhat deploy --write true --network optimismMainnet",
"deploy:optimism:testnet": "hardhat deploy --write true --network optimismTestnet",
"verify": "hardhat etherscan-verify --license GPL-3.0 --solc-input --network",
"format": "prettier --config .prettierrc --write \"**/*.{ts,js}\" \"contracts/**/*.sol\"",
"hint": "solhint \"contracts/**/*.sol\"",
"remove-logs": "hardhat remove-logs",
"test": "yarn clean && HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat test",
"test:fast": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat test",
"typechain": "typechain --target=ethers-v5 \"./abis/*.json\" --out-dir \"./types\"",
"prepack": "yarn compile",
"prepare": "husky install"
},
"devDependencies": {
"@ethersproject/abi": "5.6.1",
"@nomiclabs/hardhat-ethers": "2.0.4",
"@nomiclabs/hardhat-etherscan": "3.0.0",
"@nomiclabs/hardhat-waffle": "2.0.2",
"@openzeppelin/hardhat-upgrades": "1.14.0",
"@typechain/ethers-v5": "9.0.0",
"@typechain/hardhat": "4.0.0",
"@types/chai": "4.3.0",
"@types/debug": "4.1.7",
"@types/mocha": "9.1.0",
"@types/node": "^18.0.0",
"base64-sol": "1.1.0",
"chai": "4.3.6",
"chalk": "5.0.0",
"debug": "4.3.3",
"dotenv": "^16.0.1",
"ethereum-waffle": "3.4.0",
"ethers": "^5.6.8",
"hardhat": "^2.10.1",
"hardhat-abi-exporter": "2.8.0",
"hardhat-dependency-compiler": "1.1.2",
"hardhat-deploy": "0.10.5",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-ethers": "1.0.1",
"hardhat-gas-reporter": "1.0.7",
"hardhat-log-remover": "2.0.2",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solc": "0.8.13",
"solhint": "3.3.6",
"solidity-coverage": "0.7.18",
"solidity-docgen": "0.5.16",
"ts-generator": "0.1.1",
"ts-node": "^10.8.1",
"typechain": "7.0.0",
"typescript": "^4.7.4"
},
"files": [
"LICENSE",
"abis/**",
"artifacts/**",
"contracts/**",
"deployments/**",
"deploy/**"
],
"dependencies": {
"@foundry-rs/hardhat": "^0.1.6",
"@foundry-rs/hardhat-anvil": "^0.1.5",
"@foundry-rs/hardhat-forge": "^0.1.7",
"@openzeppelin/contracts": "^4.6.0"
}
}