-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "ssv-network",
"version": "1.0.2",
"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",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"solidity-coverage": "NO_GAS_ENFORCE=1 npx hardhat coverage",
"slither": "slither contracts --solc-remaps @openzeppelin=node_modules/@openzeppelin",
"size-contracts": "npx hardhat size-contracts"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/hardhat-upgrades": "^1.24.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/cli-table": "^0.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.36.0",
"chai-as-promised": "^7.1.1",
"cli-table": "^0.3.11",
"dotenv": "^16.0.0",
"eslint": "^8.23.0",
"gh-pages": "^3.2.3",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-storage-layout-changes": "^0.1.2",
"hardhat-tracer": "^1.2.1",
"hardhat-abi-exporter": "^2.10.1",
"prompts": "^2.4.2",
"simple-git": "^3.16.1",
"ssv-keys": "github:bloxapp/ssv-keys#v1.0.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}