-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.28 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
{
"name": "community-staking-module",
"version": "0.0.1",
"description": "Community Staking Module for Lido protocol",
"repository": "https://github.com/lidofinance/community-staking-module.git",
"author": "Community Staking Team <[email protected]>",
"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.23.1",
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@openzeppelin/merkle-tree": "^1.0.6",
"ds-test": "https://github.com/dapphub/ds-test",
"forge-std": "https://github.com/foundry-rs/forge-std.git#v1.7.6"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"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"
},
"packageManager": "[email protected]"
}