mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
5d203ac5ba
Removes [underscore](https://github.com/jashkenas/underscore). It's no longer used after updating ancestor dependencies [underscore](https://github.com/jashkenas/underscore), [@nomiclabs/hardhat-waffle](https://github.com/NomicFoundation/hardhat-waffle) and [ethereum-waffle](https://github.com/EthWorks/Waffle). These dependencies need to be updated together. Removes `underscore` Updates `@nomiclabs/hardhat-waffle` from 2.0.1 to 2.0.6 - [Release notes](https://github.com/NomicFoundation/hardhat-waffle/releases) - [Changelog](https://github.com/NomicFoundation/hardhat-waffle/blob/main/CHANGELOG.md) - [Commits](https://github.com/NomicFoundation/hardhat-waffle/commits) Updates `ethereum-waffle` from 3.4.0 to 4.0.10 - [Release notes](https://github.com/EthWorks/Waffle/releases) - [Commits](https://github.com/EthWorks/Waffle/compare/ethereum-waffle@3.4.0...ethereum-waffle@4.0.10) --- updated-dependencies: - dependency-name: underscore dependency-type: indirect - dependency-name: "@nomiclabs/hardhat-waffle" dependency-type: direct:development - dependency-name: ethereum-waffle dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1.4 KiB
JSON
41 lines
1.4 KiB
JSON
{
|
|
"name": "bbgo-contracts",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"@truffle/hdwallet-provider": "1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@nomiclabs/hardhat-ethers": "^2.0.2",
|
|
"@nomiclabs/hardhat-etherscan": "^2.1.1",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.6",
|
|
"@openzeppelin/contracts": "^3.2.0",
|
|
"chai": "^4.3.4",
|
|
"ethereum-waffle": "^4.0.10",
|
|
"ethers": "^5.4.7",
|
|
"hardhat": "^2.6.5",
|
|
"prettier": "^2.5.1",
|
|
"solhint": "^3.3.6",
|
|
"truffle-plugin-verify": "^0.5.18"
|
|
},
|
|
"scripts": {
|
|
"devserver": "KEY=development-secret.json truffle develop",
|
|
"test": "KEY=development-secret.json truffle test",
|
|
"migrate:dev": "KEY=development-secret.json truffle migrate --network development",
|
|
"migrate:polygon": "KEY=polygon-secret.json truffle migrate --network polygon",
|
|
"migrate:polygon-test": "KEY=polygon-secret.json truffle migrate --network mumbai",
|
|
"migrate:bsc": "KEY=bsc-secret.json truffle migrate --network bsc",
|
|
"migrate:bsc-test": "KEY=bsc-secret.json truffle migrate --network bsctestnet",
|
|
"lint": "npm run lint:sol && npm run lint:js",
|
|
"lint:js:fix": "prettier --write test/**/*.js",
|
|
"lint:js": "prettier test/**/*.js",
|
|
"lint:sol": "solhint contracts/**/*.sol",
|
|
"lint:sol:fix": "solhint -d contracts/**/*.sol --fix"
|
|
},
|
|
"author": "starcrypto",
|
|
"license": "MIT"
|
|
}
|