forked from bcnmy/nexus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Filipp Makarov
authored and
Filipp Makarov
committed
Jul 5, 2024
1 parent
881a8e6
commit 2af3eb5
Showing
3 changed files
with
7,587 additions
and
5,174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,26 @@ | ||
nodeLinker: node-modules | ||
|
||
plugins: | ||
- checksum: 495a89c57590ba4d16f7637a61de73905de2a96bb1974f915cacdf2c0c9ead5acbe05f089df0f9c62dc39e4c48181f178498d2abc465d6c974ac32b03bda6f25 | ||
path: .yarn/plugins/@yarnpkg/plugin-constraints.cjs | ||
spec: "@yarnpkg/plugin-constraints" | ||
- checksum: 605bebc9990a4f8fc288147412183fcebc951f7ed65c7caf7e737dc3b069bccce25d4db9b19625fb00ecdc43027ea70f64427a0a43a5d6285c62c96726a56ada | ||
path: .yarn/plugins/@yarnpkg/plugin-exec.cjs | ||
spec: "@yarnpkg/plugin-exec" | ||
- checksum: d4bd8e0caa0c8c937ba3ac12ef33cfede276c2037dea367441f221dfaf8b1bcd694d724a240226f040ca7f95e8969b37db48aa2309883aaead3134fa8fedca28 | ||
path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
- checksum: 72f94e701bf6d329231ad8a7eabca11264c708ff5877f3a50d578958f9c774957cc2306a8ebed4b79c056b60c19cab275cca1bdab608952a46c8b60cebef48ff | ||
path: .yarn/plugins/@yarnpkg/plugin-stage.cjs | ||
spec: "@yarnpkg/plugin-stage" | ||
- checksum: 8682a756a4a9ee76a98efe8048fc63c45ff924934a43e07f26f1f85f28bfd855ab931c0e2bcfdca86d2e2b531fb6966fa9b3880ac2b806d5f34bacd808537622 | ||
path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs | ||
spec: "@yarnpkg/plugin-typescript" | ||
- checksum: ca28b5b7184bebb9a1feaaf7e4b7110c5b44a80a64ac7155573999cd23b5422ee5defee9ce3afb69169b07cbca7ab807f7f4da1206cd75db47845c7f9dd84f1f | ||
path: .yarn/plugins/@yarnpkg/plugin-version.cjs | ||
spec: "@yarnpkg/plugin-version" | ||
- checksum: 642c168b3be9a305bb4bc51761383402e8840346291bc4c384af150f526a1b4b709d1f5ef2024f3692d93647f42bfdfb42bdcbb301dcff17c604aa12cde3ab01 | ||
path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs | ||
spec: "@yarnpkg/plugin-workspace-tools" | ||
|
||
yarnPath: .yarn/releases/yarn-3.2.0-rc.1.git.20211028.hash-75b031f.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,8 @@ | |
}, | ||
"dependencies": { | ||
"@openzeppelin/contracts": "^5.0.2", | ||
"dotenv": "^16.4.5" | ||
"dotenv": "^16.4.5", | ||
"solarray": "github:sablier-labs/solarray" | ||
}, | ||
"devDependencies": { | ||
"@bonadocs/docgen": "^1.0.1-alpha.1", | ||
|
@@ -37,11 +38,11 @@ | |
"hardhat-gas-reporter": "^2.2.0", | ||
"hardhat-storage-layout": "^0.1.7", | ||
"husky": "^9.0.11", | ||
"modulekit": "github:rhinestonewtf/modulekit", | ||
"prettier": "^3.2.5", | ||
"prettier-plugin-solidity": "^1.3.1", | ||
"sentinellist": "github:zeroknots/sentinellist", | ||
"solady": "github:vectorized/solady", | ||
"solarray": "github:sablier-labs/solarray", | ||
"solhint": "^5.0.1", | ||
"solhint-plugin-prettier": "^0.1.0", | ||
"solidity-coverage": "^0.8.12", | ||
|
@@ -87,7 +88,7 @@ | |
"test:gas:forge": "forge test --gas-report", | ||
"test:gas:hardhat": "REPORT_GAS=true hardhat test", | ||
"test:gas": "yarn test:gas:hardhat && yarn test:gas:forge", | ||
"gas:report": "node scripts/foundry/generateGasReport.js", | ||
"gas-report": "node scripts/foundry/generateGasReport.js", | ||
"coverage:forge": "forge coverage --ir-minimum", | ||
"coverage:hardhat": "yarn hardhat coverage", | ||
"coverage": "yarn run coverage:forge && yarn run coverage:hardhat", | ||
|
@@ -103,12 +104,13 @@ | |
"lint": "yarn run lint:sol && yarn run lint:ts", | ||
"lint:fix": "yarn run lint:sol-fix && yarn run lint:ts-fix", | ||
"check-branch-name": "node scripts/git-hooks/checkBranchNames.js", | ||
"generate-and-push-gas-report": "yarn run gas:report && git add gas_report.md && git commit -m 'Update gas report' || echo 'No changes to gas report'" | ||
"generate-and-push-gas-report": "yarn run gas-report && git add gas_report.md && git commit -m 'Update gas report' || echo 'No changes to gas report'" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-push": "yarn run check-branch-name && yarn run lint:fix && yarn run generate-and-push-gas-report", | ||
"post-checkout": "yarn run check-branch-name && yarn install && forge install" | ||
} | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.