-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "ssv-network",
"version": "1.2.0",
"description": "Solidity smart contracts for the SSV Network",
"author": "SSV.Network",
"repository": {
"type": "git",
"url": "https://github.com/bloxapp/ssv-network.git"
},
"license": "MIT",
"keywords": [
"ssv",
"ssv.network",
"solidity",
"staking"
],
"files": [
"contracts/**/*.sol",
"!contracts/**/deprecated/**",
"!contracts/**/mocks/**",
"!contracts/**/test/**",
"!contracts/**/upgrades/**",
"abis/*.json",
"tasks/",
"docs/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "npx hardhat compile",
"test": "npx hardhat test --parallel",
"test-forked": "FORK_TESTING_ENABLED=true npx hardhat test test-forked/*.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"solidity-coverage": "SOLIDITY_COVERAGE=true NO_GAS_ENFORCE=1 npx hardhat coverage",
"slither": "slither contracts --solc-remaps @openzeppelin=node_modules/@openzeppelin",
"size-contracts": "npx hardhat size-contracts"
},
"devDependencies": {
"@nomicfoundation/edr": "^0.3.4",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"dotenv": "^16.4.5",
"hardhat": "^2.22.4",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"solidity-coverage": "^0.8.12",
"ssv-keys": "github:bloxapp/ssv-keys#v1.0.4"
}
}