-
Notifications
You must be signed in to change notification settings - Fork 193
/
package.json
113 lines (113 loc) · 4.47 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
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
{
"name": "lido-on-ethereum",
"version": "2.0.0",
"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": ">=20"
},
"packageManager": "[email protected]",
"scripts": {
"compile": "hardhat compile",
"lint:sol": "solhint 'contracts/**/*.sol'",
"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 . --write",
"test": "hardhat test test/**/*.test.ts --parallel",
"test:forge": "forge test",
"test:coverage": "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": "hardhat watch",
"test:integration": "hardhat test test/integration/**/*.ts --bail",
"test:integration:trace": "hardhat test test/integration/**/*.ts --trace --disabletracer --bail",
"test:integration:fulltrace": "hardhat test test/integration/**/*.ts --fulltrace --disabletracer --bail",
"test:integration:scratch": "INTEGRATION_WITH_SCRATCH_DEPLOY=on hardhat test test/integration/**/*.ts --bail",
"test:integration:scratch:trace": "INTEGRATION_WITH_SCRATCH_DEPLOY=on hardhat test test/integration/**/*.ts --trace --disabletracer --bail",
"test:integration:scratch:fulltrace": "INTEGRATION_WITH_SCRATCH_DEPLOY=on hardhat test test/integration/**/*.ts --fulltrace --disabletracer --bail",
"test:integration:fork:local": "hardhat test test/integration/**/*.ts --network local --bail",
"test:integration:fork:mainnet": "hardhat test test/integration/**/*.ts --network mainnet-fork --bail",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"abis:extract": "hardhat abis:extract",
"verify:deployed": "hardhat verify:deployed --no-compile"
},
"lint-staged": {
"./**/*.ts": [
"eslint --max-warnings=0"
],
"./**/*.{ts,md,json}": [
"prettier --write"
],
"./test/**/*.sol": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.11.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@nomicfoundation/ignition-core": "^0.15.5",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.19",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "10.0.8",
"@types/node": "20.16.6",
"bigint-conversion": "^2.4.3",
"chai": "^4.5.0",
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^6.13.2",
"glob": "^11.0.0",
"globals": "^15.9.0",
"hardhat": "^2.22.12",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-ignore-warnings": "^0.2.11",
"hardhat-tracer": "3.1.0",
"hardhat-watcher": "2.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3",
"solhint-plugin-lido": "^0.0.4",
"solidity-coverage": "^0.8.13",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.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/[email protected]",
"openzeppelin-solidity": "2.0.0"
}
}