Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/update package json #76

Merged
merged 1 commit into from
Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ module.exports = {
'import/prefer-default-export': [0],
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
'multiline-comment-style': 'error',
'import/no-extraneous-dependencies': 'off'
},
};
2 changes: 1 addition & 1 deletion deployment/deployContracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const pathOZUpgradability = path.join(__dirname, `../.openzeppelin/${process.env
async function main() {
// Check that there0s no previous OZ deployment
if (fs.existsSync(pathOZUpgradability)) {
throw new Error(`Theres upggradability information from previous deployments, it's mandatory to erase them before start a new one, path: ${pathOZUpgradability}`);
throw new Error(`There's upgradability information from previous deployments, it's mandatory to erase them before start a new one, path: ${pathOZUpgradability}`);
}

// Constant variables
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
"homepage": "https://github.com/0xPolygonHermez/contracts-zkEVM#readme",
"license": "pending",
"dependencies": {
"chai": "^4.3.4",
"ethers": "^5.5.1"
},
"devDependencies": {
"@0xpolygonhermez/zkevm-commonjs": "github:0xPolygonHermez/zkevm-commonjs#v0.6.0.0-rc.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
Expand All @@ -38,14 +42,12 @@
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@openzeppelin/test-helpers": "^0.5.15",
"chai": "^4.3.4",
"circomlibjs": "0.1.1",
"dotenv": "^8.2.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-mocha": "^9.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.5.1",
"ffjavascript": "^0.2.39",
"hardhat": "^2.11.1",
"hardhat-gas-reporter": "^1.0.4",
Expand Down