-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.33 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.33 KB
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
{
"name": "rocketpool",
"version": "3.0.0",
"description": "A next generation decentralised Ethereum 2.0 proof of stake protocol",
"repository": "git@github.com:rocket-pool/rocketpool.git",
"author": "David Rugendyke <contact@rocketpool.net>",
"scripts": {
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js",
"test": "hardhat test --bail",
"test-gas": "REPORT_GAS=1 hardhat test --bail",
"test-fork": "hardhat test --config hardhat-fork.config.js --bail",
"coverage": "SOLIDITY_COVERAGE=true hardhat coverage",
"slither": "slither --filter-paths node_modules,old --exclude conformance-to-solidity-naming-conventions ."
},
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.20.1",
"@chainsafe/lodestar-types": "^0.5.0",
"@chainsafe/ssz": "^0.6.1",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@openzeppelin/contracts": "^3.4.0",
"@openzeppelin4/contracts": "npm:@openzeppelin/contracts@^4.9.2",
"axios": "1.8.2",
"dotenv": "^16.0.3",
"ethers": "^6.13.3",
"hardhat": "2.22.12",
"hardhat-gas-reporter": "^2.2.1",
"mocha": "^10.1.0",
"pako": "^1.0.6",
"solidity-coverage": "^0.8.13"
}
}