Skip to content

Commit

Permalink
chore: update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
petejkim committed Mar 25, 2022
1 parent 30d5ec3 commit 4c37963
Show file tree
Hide file tree
Showing 4 changed files with 259 additions and 1,191 deletions.
2 changes: 0 additions & 2 deletions .solcover.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
const shell = require("shelljs");

module.exports = {
istanbulReporter: ["html", "lcov"],
providerOptions: {
Expand Down
30 changes: 10 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,46 +4,38 @@
"license": "Apache-2.0",
"version": "1.0.0",
"devDependencies": {
"@codechecks/client": "^0.1.12",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^5.0.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^3.4.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.1",
"fs-extra": "^10.0.0",
"hardhat": "^2.9.1",
"hardhat": "^2.9.2",
"hardhat-gas-reporter": "^1.0.7",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"pinst": "^3.0.0",
"prettier": "^2.6.0",
"prettier": "^2.6.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.18",
"ts-generator": "^0.1.1",
"ts-node": "^10.7.0",
"typechain": "^7.0.1",
"typescript": "^4.5.5"
"typechain": "^8.0.0",
"typescript": "^4.6.3"
},
"files": [
"/contracts"
Expand All @@ -58,8 +50,6 @@
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"prettier": "prettier --config ./.prettierrc.json --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:check": "prettier --check --config ./.prettierrc.json \"**/*.{js,json,md,sol,ts}\"",
"test": "hardhat test",
Expand Down
2 changes: 1 addition & 1 deletion test/CoinbaseResolver.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ethers } from "hardhat";
import { SignerWithAddress } from "@nomiclabs/hardhat-ethers/dist/src/signer-with-address";
import type { CoinbaseResolver } from "../src/types/CoinbaseResolver";
import type { CoinbaseResolver } from "../src/types";
import { encode } from "../src/dnsname";
import { expect } from "chai";
import { BytesLike, utils, Wallet } from "ethers";
Expand Down
Loading

0 comments on commit 4c37963

Please sign in to comment.