-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
94 lines (94 loc) · 3.41 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
{
"name": "@stakewise/v3-core",
"version": "3.0.0",
"description": "Liquid staking protocol for Ethereum",
"main": "index.js",
"scripts": {
"compile": "SKIP_LOAD=true hardhat clean && SKIP_LOAD=true hardhat compile",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "eslint --ignore-pattern .gitignore .",
"lint:js:fix": "eslint --ignore-pattern .gitignore --fix './**/*.ts'",
"lint:sol": "prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write 'contracts/**/*.sol'",
"spdx": "hardhat prepend-spdx-license",
"export-abi": "hardhat export-abi",
"size": "npm run compile && hardhat size-contracts",
"slither": "npm run compile && SKIP_LOAD=true slither --fail-high --skip-clean .",
"quick-test": "hardhat test",
"quick-test:fork": "ENABLE_MAINNET_FORK=true hardhat test",
"test": "npm run compile && hardhat test",
"test:fork": "npm run compile && ENABLE_MAINNET_FORK=true hardhat test",
"test:gas": "npm run compile && TRACK_GAS=true hardhat test",
"coverage": "COVERAGE=true npm run compile && COVERAGE=true hardhat coverage",
"precommit": "lint-staged",
"node": "hardhat node",
"full-deploy:holesky": "hardhat eth-full-deploy --network holesky",
"full-deploy:mainnet": "hardhat eth-full-deploy --network mainnet",
"upgrade:holesky": "hardhat eth-upgrade --network holesky",
"upgrade:mainnet": "hardhat eth-upgrade --network mainnet",
"upgrade:chiado": "hardhat gno-upgrade --network chiado",
"upgrade:gnosis": "hardhat gno-upgrade --network gnosis",
"full-deploy:eth-local": "hardhat eth-full-deploy-local --network local",
"full-deploy:chiado": "hardhat gno-full-deploy --network chiado",
"full-deploy:gnosis": "hardhat gno-full-deploy --network gnosis"
},
"repository": {
"type": "git",
"url": "https://github.com/stakewise/v3-core"
},
"bugs": {
"url": "https://github.com/stakewise/v3-core/issues"
},
"homepage": "https://github.com/stakewise/v3-core#readme",
"devDependencies": {
"@chainsafe/ssz": "0.18.0",
"@metamask/eth-sig-util": "7.0.3",
"@nomicfoundation/hardhat-toolbox": "5.0.0",
"@openzeppelin/hardhat-upgrades": "3.5.0",
"@openzeppelin/merkle-tree": "1.0.7",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "8.9.0",
"bls-eth-wasm": "1.1.1",
"dotenv": "16.4.5",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"ethereumjs-wallet": "1.0.2",
"hardhat-abi-exporter": "2.10.1",
"hardhat-contract-sizer": "2.10.0",
"hardhat-log-remover": "2.1.1",
"hardhat-spdx-license-identifier": "2.3.1",
"husky": "9.1.6",
"keccak256": "1.0.6",
"lint-staged": "15.2.10",
"mocha-chai-jest-snapshot": "1.1.6",
"prettier": "3.3.3",
"prettier-plugin-solidity": "1.4.1"
},
"lint-staged": {
"test/**/*.ts": [
"prettier --write",
"eslint --ignore-pattern .gitignore --fix './**/*.ts'"
],
"contracts/**/*.sol": [
"prettier --write"
]
},
"author": "StakeWise Labs <[email protected]>",
"license": "BUSL-1.1",
"keywords": [
"stakewise",
"liquid staking",
"ethereum",
"protocol",
"solidity",
"evm",
"contracts",
"core"
],
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2"
}
}