-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 2.1 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
{
"name": "etherbase",
"description": "Predeployed smart contract that stores and manages access to sFUEL received from block rewards and gas fees.",
"main": "index.js",
"repository": "[email protected]:skalenetwork/etherbase.git",
"author": "Dmytro Stebaiev <[email protected]>",
"license": "AGPL-3.0",
"scripts": {
"compile": "npx hardhat clean && npx hardhat compile",
"prepare": "yarn compile && yarn hooks",
"lint": "npx solhint \"contracts/**/*.sol\"",
"cspell": "npx cspell \"**/*\"",
"slither": "slither .",
"tsc": "npx tsc --noEmit",
"eslint": "npx eslint --cache --ext .js,.jsx,.ts,.tsx .",
"test": "yarn tsc && npx hardhat test",
"fullCheck": "yarn lint && yarn cspell && yarn tsc && yarn eslint && yarn slither",
"hooks": "git config core.hooksPath .githooks || true",
"no-hooks": "git config core.hooksPath .git/hooks"
},
"devDependencies": {
"@ethersproject/abi": "^5.6.1",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^5.0.0",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^9.1.1",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"cspell": "^8.17.1",
"eslint": "^8.56.0",
"ethers": "^5.7.2",
"ganache": "^7.9.2",
"hardhat": "^2.16.1",
"kill-port": "^2.0.1",
"lodash": "^4.17.21",
"solhint": "^4.1.1",
"solidity-coverage": "^0.8.12",
"ts-node": "^10.9.2",
"typechain": "^7.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.5",
"@skalenetwork/ima-interfaces": "^2.0.0",
"@skalenetwork/upgrade-tools": "^2.0.1"
},
"packageManager": "[email protected]"
}