forked from Consensys/linea-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "linea-contracts",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"build": "npx hardhat compile",
"test": "npx hardhat test",
"test:reportgas": "REPORT_GAS=true npx hardhat test",
"coverage": "npx hardhat coverage",
"prettier:fix": "prettier -w '**/*.{js,ts,sol}'",
"lint:sol:fix": "solhint --fix --noPrompt 'contracts/**/*.sol'",
"lint:ts:fix": "npx eslint --fix '**/*.{js,ts}'",
"lint:fix": "pnpm run lint:sol:fix && npm run lint:ts:fix && npm run prettier:fix"
},
"devDependencies": {
"@ethereumjs/util": "^9.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.0",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-upgrades": "^2.5.0",
"@safe-global/protocol-kit": "^3.0.0",
"@safe-global/safe-core-sdk-types": "^4.0.0",
"@typechain/hardhat": "9.0.0",
"@types/diff": "^5.2.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"c-kzg": "^2.1.2",
"colors": "^1.4.0",
"dotenv": "^16.4.4",
"edit-json-file": "^1.8.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.12.0",
"hardhat": "^2.22.3",
"hardhat-deploy": "^0.12.3",
"hardhat-storage-layout": "^0.1.7",
"hardhat-tracer": "^2.8.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1",
"yargs": "^17.7.2"
},
"dependencies": {
"csv-parser": "^3.0.0"
}
}