Roy Crihfield
bc3a7934cf
* refactor vulcanize => cerc * update geth and cerc dependencies * update packages, ginkgo * refactor chain generation * update integration tests, contract, makefile * go embed contract code * rm old readme * move unit tests into package * rm ginkgo where not needed * use tx in ref integrity functions
26 lines
602 B
JSON
26 lines
602 B
JSON
{
|
|
"name": "contract",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"compile": "npx hardhat compile",
|
|
"start": "node src/index.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "Solidity contract deployment server for integration testing",
|
|
"dependencies": {
|
|
"@openzeppelin/contracts": "^4.0.0",
|
|
"fastify": "^4.0.0",
|
|
"hardhat": "^2.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nomiclabs/hardhat-ethers": "^2.2.3",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.4",
|
|
"chai": "^4.3.4",
|
|
"ethereum-waffle": "^3.3.0",
|
|
"ethers": "^5.1.0"
|
|
}
|
|
}
|