-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.25 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
37
{
"name": "staking-modules",
"version": "0.0.1",
"description": "Staking Modules for Lido protocol",
"repository": "https://github.com/lidofinance/staking-modules.git",
"author": "Community Staking Team <csm@lido.fi>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"lint:solhint": "solhint './src/**/*.sol'",
"lint:check": "prettier --check **.sol && yarn lint:solhint",
"lint:fix": "prettier --write **.sol",
"generate:diffyscan": "node script/generateDiffyscanContracts.js",
"gindex": "node script/gindex.mjs"
},
"dependencies": {
"@lodestar/types": "^1.31.0",
"@openzeppelin/contracts": "5.4.0",
"@openzeppelin/contracts-upgradeable": "5.4.0",
"@openzeppelin/merkle-tree": "^1.0.8",
"forge-std": "https://github.com/foundry-rs/forge-std.git#v1.9.6",
"web3-eth-abi": "^4.4.1"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^15.4.3",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "5.0.1",
"solhint-plugin-lido-csm": "https://github.com/lidofinance/solhint-plugin-lido-csm.git#0.3.3"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"src/**/*.sol": "solhint './src/**/*.sol'"
},
"packageManager": "yarn@4.1.1"
}