add package json and ignore file for solidity module

This commit is contained in:
c9s 2021-03-01 11:58:38 +08:00
parent a52f487d4e
commit ccdb0a9e56
3 changed files with 6291 additions and 0 deletions

3
sol/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/build
/node_modules
/cache

6266
sol/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

22
sol/package.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "bbgo-contracts",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.2.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@openzeppelin/contracts": "^3.2.0",
"hardhat": "^2.0.8"
},
"scripts": {
"test": "mocha"
},
"author": "",
"license": "ISC"
}