2023-10-21 23:11:35 +03:00
{
"name" : "proposal-32" ,
"version" : "1.0.0" ,
"description" : "This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, and a script that deploys that contract." ,
"main" : "hardhat.config.js" ,
"directories" : {
"test" : "test"
} ,
"scripts" : {
2023-10-23 16:48:36 +03:00
"test" : "npx hardhat test" ,
"deploy" : "npx hardhat run script/deploy.js"
2023-10-21 23:11:35 +03:00
} ,
"author" : "" ,
"license" : "ISC" ,
"devDependencies" : {
"@nomicfoundation/hardhat-chai-matchers" : "^2.0.2" ,
"@nomicfoundation/hardhat-ethers" : "^3.0.4" ,
"@nomicfoundation/hardhat-network-helpers" : "^1.0.9" ,
"@nomicfoundation/hardhat-toolbox" : "^3.0.0" ,
"@nomicfoundation/hardhat-verify" : "^1.1.1" ,
"@typechain/ethers-v6" : "^0.4.3" ,
"@typechain/hardhat" : "^8.0.3" ,
"@types/chai" : "^4.3.9" ,
"@types/mocha" : "^10.0.2" ,
"chai" : "^4.3.10" ,
2023-10-23 16:48:36 +03:00
"chai-things" : "^0.2.0" ,
2023-10-21 23:11:35 +03:00
"dotenv" : "^16.3.1" ,
"ethers" : "^6.8.0" ,
"hardhat" : "^2.18.1" ,
"hardhat-gas-reporter" : "^1.0.9" ,
"prettier" : "^3.0.3" ,
"prettier-plugin-solidity" : "^1.1.3" ,
"solidity-coverage" : "^0.8.5" ,
"ts-node" : "^10.9.1" ,
"typechain" : "^8.3.2" ,
"typescript" : "^5.2.2"
} ,
"dependencies" : {
"@openzeppelin/contracts" : "^3.2.0-rc.0" ,
"@openzeppelin/upgrades-core" : "^1.30.1" ,
"torn-token" : "^1.0.8"
}
}