2021-04-16 13:57:11 +00:00
|
|
|
{
|
|
|
|
"name": "contract",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2021-04-19 08:32:36 +00:00
|
|
|
"compile": "npx hardhat compile",
|
2023-04-14 06:26:46 +00:00
|
|
|
"start": "node src/index.js"
|
2021-04-16 13:57:11 +00:00
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
2023-04-14 06:26:46 +00:00
|
|
|
"description": "Solidity contract deployment server for integration testing",
|
2021-04-16 13:57:11 +00:00
|
|
|
"dependencies": {
|
2021-04-19 08:32:36 +00:00
|
|
|
"@openzeppelin/contracts": "^4.0.0",
|
2023-04-14 06:26:46 +00:00
|
|
|
"fastify": "^4.0.0",
|
|
|
|
"hardhat": "^2.14.0",
|
2022-03-17 12:01:01 +00:00
|
|
|
"solidity-create2-deployer": "^0.4.0"
|
2021-04-16 13:57:11 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-04-14 06:26:46 +00:00
|
|
|
"@nomiclabs/hardhat-ethers": "^2.2.3",
|
|
|
|
"@nomiclabs/hardhat-waffle": "^2.0.4",
|
2021-04-16 13:57:11 +00:00
|
|
|
"chai": "^4.3.4",
|
|
|
|
"ethereum-waffle": "^3.3.0",
|
|
|
|
"ethers": "^5.1.0"
|
|
|
|
}
|
|
|
|
}
|