This repository was archived by the owner on Aug 22, 2023. It is now read-only.
forked from qzirak/veXYZ
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.86 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
{
"name": "template",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-truffle5": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.7.0",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@openzeppelin/test-helpers": "^0.5.15",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.1",
"hardhat": "^2.17.0",
"hardhat-abi-exporter": "^2.8.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-storage-layout": "^0.1.6",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13"
},
"scripts": {
"forge": "forge",
"prettier": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' --config .prettierrc",
"lint": "prettier --list-different 'contracts/**/*.sol'",
"deploy": "hardhat deploy --tags prod --no-compile",
"typechain": "echo '> Creating typechain types...'; [ ! -d ./typechain ] && typechain --target ethers-v5 --out-dir './typechain' './out/**/*.json' --show-stack-traces",
"deploy:localhost": "hardhat --network localhost deploy --tags prod --no-compile",
"deploy:chapel": "hardhat --network chapel deploy --tags prod --no-compile",
"deploy:mumbai": "hardhat --network mumbai deploy --tags prod --no-compile"
},
"files": [
"contracts"
],
"devDependencies": {
"@typechain/hardhat": "^9.0.0",
"hardhat-deploy": "^0.11.34",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"typechain": "^8.3.1",
"@typechain/ethers-v5": "^11.1.0",
"typescript": "^5.1.6",
"ts-node": "^10.9.1"
}
}