mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 20:27:58 -05:00
Co-authored-by: Franklin Delehelle <franklin.delehelle@odena.eu> Co-authored-by: Alexandre Belling <alexandrebelling8@gmail.com> Co-authored-by: Pedro Novais <jpvnovais@gmail.com> Co-authored-by: Roman Vaseev <4833306+Filter94@users.noreply.github.com> Co-authored-by: Bradley Bown <bradbown@googlemail.com> Co-authored-by: Victorien Gauch <85494462+VGau@users.noreply.github.com> Co-authored-by: Nikolai Golub <nikolai.golub@consensys.net> Co-authored-by: The Dark Jester <thedarkjester@users.noreply.github.com> Co-authored-by: jonesho <81145364+jonesho@users.noreply.github.com> Co-authored-by: Gaurav Ahuja <gauravahuja9@gmail.com> Co-authored-by: Azam Soleimanian <49027816+Soleimani193@users.noreply.github.com> Co-authored-by: Andrei A <andrei.alexandru@consensys.net> Co-authored-by: Arijit Dutta <37040536+arijitdutta67@users.noreply.github.com> Co-authored-by: Gautam Botrel <gautam.botrel@gmail.com> Co-authored-by: Ivo Kubjas <ivo.kubjas@consensys.net> Co-authored-by: gusiri <dreamerty@postech.ac.kr> Co-authored-by: FlorianHuc <florian.huc@gmail.com> Co-authored-by: Arya Tabaie <arya.pourtabatabaie@gmail.com> Co-authored-by: Julink <julien.fontanel@consensys.net> Co-authored-by: Bogdan Ursu <bogdanursuoffice@gmail.com> Co-authored-by: Jakub Trąd <jakubtrad@gmail.com> Co-authored-by: Alessandro Sforzin <alessandro.sforzin@consensys.net> Co-authored-by: Olivier Bégassat <olivier.begassat.cours@gmail.com> Co-authored-by: Steve Huang <97596526+stevehuangc7s@users.noreply.github.com> Co-authored-by: bkolad <blazejkolad@gmail.com> Co-authored-by: fadyabuhatoum1 <139905934+fadyabuhatoum1@users.noreply.github.com> Co-authored-by: Blas Rodriguez Irizar <rodrigblas@gmail.com> Co-authored-by: Eduardo Andrade <eduardofandrade@gmail.com> Co-authored-by: Ivo Kubjas <tsimmm@gmail.com> Co-authored-by: Ludcour <ludovic.courcelas@consensys.net> Co-authored-by: m4sterbunny <harrie.bickle@consensys.net> Co-authored-by: Alex Panayi <145478258+alexandrospanayi@users.noreply.github.com> Co-authored-by: Diana Borbe - ConsenSys <diana.borbe@consensys.net> Co-authored-by: ThomasPiellard <thomas.piellard@gmail.com>
55 lines
2.1 KiB
JSON
55 lines
2.1 KiB
JSON
{
|
|
"name": "contracts",
|
|
"engines": {
|
|
"node": ">=18",
|
|
"pnpm": ">=9"
|
|
},
|
|
"scripts": {
|
|
"build": "npx hardhat compile --concurrency 4",
|
|
"test": "npm run autoupdate && npx hardhat test",
|
|
"test:reportgas": "REPORT_GAS=true npx hardhat test",
|
|
"coverage": "npm run autoupdate && npx hardhat coverage --solcoverjs ./.solcover.js",
|
|
"autoupdate": "cd ../prover && cmd/dev-tools/testcase-gen/compression-aggregation/autoupdate.sh && cd ../contracts",
|
|
"balance": "ts-node scripts/balanceOf.ts",
|
|
"prettier": "prettier -c '**/*.{js,ts,sol}'",
|
|
"prettier:fix": "prettier -w '**/*.{js,ts,sol}'",
|
|
"lint:sol": "solhint 'contracts/**/*.sol'",
|
|
"lint:sol:fix": "solhint --fix --noPrompt 'contracts/**/*.sol'",
|
|
"lint:ts": "npx eslint '**/*.{js,ts}'",
|
|
"lint:ts:fix": "npx eslint --fix '**/*.{js,ts}'",
|
|
"lint": "pnpm run lint:sol && npm run lint:ts && npm run prettier",
|
|
"lint:fix": "pnpm run lint:sol:fix && npm run lint:ts:fix && npm run prettier:fix",
|
|
"clean": "rimraf .openzeppelin build cache node_modules typechain-types coverage coverage.json"
|
|
},
|
|
"devDependencies": {
|
|
"@ethereumjs/util": "9.0.3",
|
|
"@nomicfoundation/hardhat-ethers": "3.0.5",
|
|
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
|
|
"@nomicfoundation/hardhat-toolbox": "4.0.0",
|
|
"@nomicfoundation/hardhat-verify": "1.1.1",
|
|
"@openzeppelin/contracts": "4.9.6",
|
|
"@openzeppelin/contracts-upgradeable": "4.9.6",
|
|
"@openzeppelin/hardhat-upgrades": "2.5.1",
|
|
"@safe-global/protocol-kit": "3.0.2",
|
|
"@safe-global/safe-core-sdk-types": "4.0.2",
|
|
"@typechain/hardhat": "9.0.0",
|
|
"@types/diff": "5.2.0",
|
|
"@types/yargs": "17.0.32",
|
|
"c-kzg": "2.1.2",
|
|
"chai": "4.1.1",
|
|
"colors": "1.4.0",
|
|
"csv-parser": "3.0.0",
|
|
"dotenv": "16.4.5",
|
|
"edit-json-file": "1.8.0",
|
|
"ethers": "6.12.0",
|
|
"hardhat": "2.22.6",
|
|
"hardhat-deploy": "0.12.4",
|
|
"hardhat-storage-layout": "0.1.7",
|
|
"hardhat-tracer": "2.8.2",
|
|
"node-gyp": "10.1.0",
|
|
"prettier-plugin-solidity": "1.3.1",
|
|
"solhint": "4.5.4",
|
|
"yargs": "17.7.2"
|
|
}
|
|
}
|