-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 6.94 KB
/
Copy pathpackage.json
File metadata and controls
146 lines (146 loc) · 6.94 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "lido-on-ethereum",
"version": "3.0.2",
"description": "Lido on Ethereum is a liquid-staking protocol allowing anyone to earn staking rewards without locking ether or maintaining infrastructure",
"license": "GPL-3.0-only",
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.9.2",
"scripts": {
"compile": "hardhat compile",
"cleanup": "hardhat clean",
"lint:sol": "hardhat lint-solidity",
"lint:sol:fix": "yarn lint:sol --fix",
"lint:ts": "eslint . --max-warnings=0",
"lint:ts:fix": "yarn lint:ts --fix",
"lint": "yarn lint:sol && yarn lint:ts",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"check": "yarn lint && yarn format && yarn typecheck",
"test": "NODE_OPTIONS='--max-old-space-size=10240' hardhat test test/**/*.test.ts --parallel",
"test:bls:blst": "SKIP_INTERFACES_CHECK=true SKIP_LINT_SOLIDITY=true SKIP_GAS_REPORT=true hardhat test test/common/bls.blst.e2e.fuzz.test.ts",
"test:forge": "forge test",
"test:coverage": "NODE_OPTIONS='--max-old-space-size=16384' COVERAGE=unit hardhat coverage",
"test:coverage:integration": "COVERAGE=integration MODE=scratch hardhat coverage",
"test:coverage:full": "COVERAGE=full MODE=scratch hardhat coverage",
"test:sequential": "hardhat test test/**/*.test.ts",
"test:trace": "hardhat test test/**/*.test.ts --trace --disabletracer",
"test:fulltrace": "hardhat test test/**/*.test.ts --fulltrace --disabletracer",
"test:watch": "SKIP_GAS_REPORT=true SKIP_CONTRACT_SIZE=true hardhat watch test",
"test:integration": "bash scripts/run-test-integration.sh",
"test:integration:local": "RUN_NETWORK=local yarn test:integration",
"test:integration:trace": "TRACE=trace yarn test:integration",
"test:integration:fulltrace": "TRACE=fulltrace yarn test:integration",
"test:integration:upgrade": "MODE=forking UPGRADE=true STEPS_FILE=upgrade/steps-mock-upgrade.json yarn test:integration",
"test:integration:upgrade:local": "RUN_NETWORK=local yarn test:integration:upgrade",
"test:integration:upgrade-template": "TEMPLATE_TEST=true yarn test:integration:upgrade",
"test:integration:scratch": "MODE=scratch yarn test:integration",
"test:integration:scratch:trace": "MODE=scratch yarn test:integration:trace",
"test:integration:scratch:fulltrace": "MODE=scratch yarn test:integration:fulltrace",
"test:integration:fork:local": "MODE=forking NETWORK=local yarn test:integration",
"test:node:docker:fork": "MODE=forking bash scripts/run-fork-node-docker.sh",
"test:node:docker:scratch": "MODE=scratch bash scripts/run-fork-node-docker.sh",
"test:node:local:fork": "bash scripts/run-fork-node.sh",
"scratch:deploy:localhost": "SKIP_INTERFACES_CHECK=true SKIP_CONTRACT_SIZE=true SKIP_GAS_REPORT=true GENESIS_TIME=1639659600 GAS_PRIORITY_FEE=1 GAS_MAX_FEE=100 DEPLOYER=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 MODE=scratch hardhat run scripts/scratch/scratch-deploy.ts --network localhost",
"test:fork:pdg-validator": "MODE=forking hardhat test test/integration/vaults/scenario/pdg-specific-validator.integration.ts",
"validate:configs": "yarn hardhat validate-configs",
"typecheck": "tsc --noEmit",
"abis:extract": "hardhat abis:extract",
"verify:deployed": "hardhat verify:deployed",
"upgrade:fork-node": "yarn test:node:local:fork",
"upgrade:mock:voting": "MODE=forking STEPS_FILE=upgrade/steps-mock-voting.json yarn deploy:upgrade",
"upgrade:mock:upgrade": "MODE=forking RUN_NETWORK=local STEPS_FILE=upgrade/steps-mock-upgrade.json yarn deploy:upgrade",
"upgrade:mock:scripts": "MODE=forking RUN_NETWORK=local STEPS_FILE=upgrade/steps-mock-upgrade-scripts.json yarn deploy:upgrade",
"deploy:helper:run": "bash scripts/dao-deploy.sh",
"deploy:scratch": "MODE=scratch yarn deploy:helper:run",
"deploy:scratch:local": "NETWORK=local yarn deploy:scratch",
"deploy:upgrade": "UPGRADE=true yarn deploy:helper:run",
"deploy:upgrade:base": "STEPS_FILE=upgrade/steps-deploy-base.json yarn deploy:upgrade",
"deploy:upgrade:template": "STEPS_FILE=upgrade/steps-deploy-template.json yarn deploy:upgrade",
"deploy:upgrade:base:local": "NETWORK=local yarn deploy:upgrade:base",
"deploy:upgrade:template:local": "NETWORK=local yarn deploy:upgrade:template",
"postinstall": "husky"
},
"lint-staged": {
"./**/*.ts": [
"eslint --max-warnings=0 --fix --no-warn-ignored"
],
"./**/*.{ts,md,json}": [
"prettier --write"
],
"./test/**/*.sol": [
"prettier --write"
]
},
"devDependencies": {
"@chainsafe/blst": "2.2.0",
"@chainsafe/ssz": "1.2.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/compat": "1.3.0",
"@eslint/js": "9.28.0",
"@iarna/toml": "^2.2.5",
"@nomicfoundation/ethereumjs-util": "^9.0.4",
"@nomicfoundation/hardhat-chai-matchers": "2.0.9",
"@nomicfoundation/hardhat-ethers": "3.0.9",
"@nomicfoundation/hardhat-ignition": "0.15.11",
"@nomicfoundation/hardhat-ignition-ethers": "0.15.12",
"@nomicfoundation/hardhat-network-helpers": "1.0.12",
"@nomicfoundation/hardhat-toolbox": "5.0.0",
"@nomicfoundation/hardhat-verify": "2.1.1",
"@nomicfoundation/ignition-core": "0.15.11",
"@openzeppelin/merkle-tree": "1.0.8",
"@typechain/ethers-v6": "0.5.1",
"@typechain/hardhat": "9.1.0",
"@types/chai": "4.3.20",
"@types/eslint": "9.6.1",
"@types/mocha": "10.0.10",
"@types/node": "22.15.31",
"bigint-conversion": "2.4.3",
"chai": "4.5.0",
"chalk": "4.1.2",
"dotenv": "16.5.0",
"eslint": "9.28.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prettier": "5.4.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"ethereumjs-util": "7.1.5",
"ethers": "6.14.4",
"glob": "11.1.0",
"globals": "15.15.0",
"hardhat": "2.26.1",
"hardhat-contract-sizer": "2.10.0",
"hardhat-gas-reporter": "2.3.0",
"hardhat-ignore-warnings": "0.2.12",
"hardhat-tracer": "3.2.1",
"hardhat-watcher": "2.5.0",
"husky": "9.1.7",
"lint-staged": "16.1.0",
"prettier": "3.5.3",
"prettier-plugin-solidity": "2.0.0",
"solhint": "5.1.0",
"solhint-plugin-lido": "0.0.4",
"solidity-coverage": "0.8.16",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typechain": "8.3.2",
"typescript": "5.8.3",
"typescript-eslint": "8.34.0"
},
"dependencies": {
"@aragon/apps-agent": "2.1.0",
"@aragon/apps-finance": "3.0.0",
"@aragon/apps-lido": "https://github.com/lidofinance/aragon-apps/archive/refs/tags/app-voting-v3.0.0-1.tar.gz",
"@aragon/apps-vault": "4.1.0",
"@aragon/id": "2.1.1",
"@aragon/minime": "1.0.0",
"@aragon/os": "4.4.0",
"@openzeppelin/contracts": "3.4.0",
"@openzeppelin/contracts-v4.4": "npm:@openzeppelin/contracts@4.4.1",
"@openzeppelin/contracts-v5.2": "npm:@openzeppelin/contracts@5.2.0",
"openzeppelin-solidity": "2.0.0",
"zod": "^4.0.13"
}
}