Skip to content

Commit

Permalink
Merge pull request #27 from unchain-tech/feature/update-complete
Browse files Browse the repository at this point in the history
Feature/update complete
  • Loading branch information
yk-saito authored Oct 25, 2023
2 parents 530fce2 + 608583a commit 3b74536
Show file tree
Hide file tree
Showing 9 changed files with 5,463 additions and 4,323 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ module.exports = {
mocha: true,
node: true,
},
plugins: ['@typescript-eslint'],
extends: ['standard', 'prettier', 'plugin:node/recommended'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
rules: {
'node/no-unsupported-features/es-syntax': [
Expand Down
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @yk-saito @honganji
* @unchain-tech/sb-w3dev
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
cache: 'yarn'
- uses: actions/cache@v3
id: yarn-cache
Expand Down
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.yarn/releases

node_modules
.openzeppelin
.vscode
Expand Down
874 changes: 874 additions & 0 deletions .yarn/releases/yarn-3.6.4.cjs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.6.4.cjs
13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
{
"name": "ETH-dApp-v2",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "prototype of ETH-dApp",
"repository": "https://github.com/unchain-tech/ETH-dApp-prototype.git",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
Expand All @@ -39,4 +36,4 @@
"lint": "eslint .",
"lint:fix": "eslint --fix ."
}
}
}
31 changes: 14 additions & 17 deletions packages/contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,20 @@
"prettier:fix": "prettier --ignore-unknown --no-error-on-unmatched-pattern --ignore-path .prettierignore --check ."
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.6",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"hardhat": "^2.17.1",
"hardhat-gas-reporter": "^1.0.9",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "1.0.8",
"@nomicfoundation/hardhat-toolbox": "2.0.2",
"@nomiclabs/hardhat-ethers": "2.2.2",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@typechain/ethers-v5": "10.2.0",
"@typechain/hardhat": "6.1.5",
"chai": "4.3.7",
"dotenv": "16.0.3",
"ethers": "5.4",
"hardhat": "2.18.1",
"hardhat-gas-reporter": "1.0.9",
"solhint": "3.3.8",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.5"
"solidity-coverage": "0.8.2",
"typechain": "8.1.1"
}
}
Loading

0 comments on commit 3b74536

Please sign in to comment.