-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.79 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.79 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
{
"name": "ethx",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "forge test -v",
"prettier:check": "prettier --check \"(contracts|test|script)/**/*.sol\"",
"prettier:fix": "prettier --write \"(contracts|test|script)/**/*.sol\"",
"lint": "solhint 'contracts/**/*.sol' 'script/**/*.sol'",
"upgrade:arbitrum": "npx hardhat run scripts/safe-scripts/upgrade.ts --network arbitrum",
"upgrade:playground:arbitrum": "npx hardhat run scripts/safe-scripts/upgradePlayground.ts --network arbitrum"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stader-labs/ethx.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stader-labs/ethx/issues"
},
"homepage": "https://github.com/stader-labs/ethx#readme",
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^3.1.0",
"@safe-global/api-kit": "^2.3.0",
"@safe-global/protocol-kit": "^3.0.2",
"@safe-global/safe-core-sdk-types": "^4.0.2",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/inquirer": "8.2.10",
"axios": "^1.6.0",
"hardhat": "^2.22.3",
"inquirer": "8.2.6",
"prettier": "3.2.5",
"prettier-plugin-solidity": "1.3.1",
"solhint": "5.0.1",
"typechain": "^8.3.2"
},
"dependencies": {
"@chainlink/contracts": "1.1.0",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"bytes32": "^0.0.3",
"dotenv": "^16.0.3",
"get-random-values": "^3.0.0",
"ssv-keys": "github:bloxapp/ssv-keys"
}
}