31 lines
887 B
JSON
31 lines
887 B
JSON
|
|
{
|
||
|
|
"name": "sankofa-phoenix-blockchain",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"private": true,
|
||
|
|
"scripts": {
|
||
|
|
"compile": "hardhat compile",
|
||
|
|
"test": "hardhat test",
|
||
|
|
"deploy:local": "hardhat run scripts/deploy.ts --network localhost",
|
||
|
|
"deploy:test": "hardhat run scripts/deploy.ts --network testnet",
|
||
|
|
"node:start": "docker-compose up -d besu",
|
||
|
|
"node:stop": "docker-compose down",
|
||
|
|
"generate:types": "ts-node scripts/generate-types.ts",
|
||
|
|
"compile:types": "hardhat compile && pnpm generate:types"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
|
||
|
|
"@typechain/ethers-v6": "^0.5.0",
|
||
|
|
"@typechain/hardhat": "^9.0.0",
|
||
|
|
"hardhat": "^2.19.0",
|
||
|
|
"typescript": "^5.4.0",
|
||
|
|
"ts-node": "^10.9.0",
|
||
|
|
"typechain": "^8.3.2"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@openzeppelin/contracts": "^5.0.0",
|
||
|
|
"ethers": "^6.9.0",
|
||
|
|
"web3": "^4.3.0"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|