-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
95 lines (95 loc) · 3.26 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
95
{
"name": "@skalenetwork/skale-manager",
"version": "1.8.1",
"private": true,
"description": "SKALE Manager system, Decentralized task manager",
"homepage": "https://github.com/skalenetwork/skale-manager#readme",
"bugs": {
"url": "https://github.com/skalenetwork/skale-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skalenetwork/skale-manager.git"
},
"license": "AGPL-3.0",
"author": "SKALE Labs",
"contributors": [
{
"name": "Artem Payvin <[email protected]>",
"url": "https://github.com/payvint",
"githubUsername": "payvint"
},
{
"name": "Dmytro Stebaiev",
"url": "https://github.com/DimaStebaev",
"githubUsername": "DimaStebaev"
}
],
"scripts": {
"compile": "npx hardhat compile",
"cleanCompile": "npx hardhat clean && yarn compile",
"docs": "scripts/prepare-docs.sh",
"fullCheck": "yarn lint && yarn tsc && yarn eslint && yarn cspell && yarn slither",
"hooks": "git config core.hooksPath .githooks || true",
"no-hooks": "git config core.hooksPath .git/hooks",
"lint": "npx solhint \"contracts/**/*.sol\"",
"prepare": "yarn compile && yarn hooks",
"slither": "slither .",
"test": "yarn tsc && npx hardhat test",
"tsc": "tsc --noEmit",
"eslint": "npx eslint .",
"cspell": "npx cspell \"**/*\""
},
"dependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@openzeppelin/hardhat-upgrades": "^3.2.0",
"@skalenetwork/ima-interfaces": "2.0.0-develop.67",
"@skalenetwork/marionette-interfaces": "^0.0.0-main.6",
"@skalenetwork/paymaster-interfaces": "^1.0.1",
"@skalenetwork/skale-manager-interfaces": "3.2.0",
"@skalenetwork/upgrade-tools": "3.0.0-develop.21",
"@typechain/hardhat": "^9.1.0",
"dotenv": "^16.4.5",
"ethereumjs-util": "^7.1.5",
"ethers": "^6.13.1",
"hardhat": "^2.22.8"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@typechain/ethers-v6": "^0.5.1",
"@types/chai": "^4.3.6",
"@types/chai-almost": "^1.0.1",
"@types/chai-as-promised": "^7.1.6",
"@types/debug": "^4.1.12",
"@types/elliptic": "^6.4.15",
"@types/minimist": "^1.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^22.7.4",
"@types/sinon-chai": "^4.0.0",
"@types/underscore": "^1.11.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"bignumber.js": "^9.1.2",
"chai": "^4.3.8",
"chai-almost": "^1.0.1",
"chai-as-promised": "^7.1.1",
"cspell": "^7.3.8",
"elliptic": "^6.6.0",
"eslint": "^8.50.0",
"ethereum-waffle": "^3.4.4",
"ganache": "^7.9.1",
"hardhat-dependency-compiler": "^1.2.1",
"solhint": "^5.0.3",
"solidity-coverage": "^0.8.13",
"solidity-docgen": "^0.5.17",
"ts-generator": "^0.1.1",
"ts-node": "10.9.1",
"typechain": "^8.3.2",
"typescript": "5.7.2"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}