-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (65 loc) · 2.79 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
{
"name": "skale-ima-proxy",
"private": true,
"license": "AGPL-3.0",
"author": "SKALE Labs and contributors",
"scripts": {
"compile": "npx hardhat compile",
"cleanCompile": "npx hardhat clean && yarn compile",
"deploy-to-both-chains": "yarn deploy-to-mainnet && yarn deploy-to-schain",
"deploy-to-mainnet": "VERSION=$(cat ./VERSION) npx hardhat run migrations/deployMainnet.ts --network mainnet",
"deploy-to-schain": "VERSION=$(cat ./VERSION) npx hardhat run migrations/deploySchain.ts --network schain",
"deploy-skale-manager-components": "npx hardhat run migrations/deploySkaleManagerComponents.ts --network mainnet",
"eslint": "npx eslint .",
"lint": "npx solhint \"contracts/**/*.sol\"",
"prepare": "yarn cleanCompile",
"test": "yarn tsc && npx hardhat test",
"tsc": "tsc --noEmit",
"slither": "slither .",
"fullCheck": "yarn lint && yarn tsc && yarn eslint && yarn slither",
"hooks": "git config core.hooksPath .githooks",
"no-hooks": "git config core.hooksPath .git/hooks"
},
"dependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@openzeppelin/contracts-upgradeable": "^4.7.1",
"@openzeppelin/hardhat-upgrades": "^3.1.1",
"@safe-global/api-kit": "2.5.4",
"@skalenetwork/etherbase-interfaces": "^0.0.1-develop.20",
"@skalenetwork/ima-interfaces": "2.0.0",
"@skalenetwork/skale-manager-interfaces": "2.0.0",
"@skalenetwork/upgrade-tools": "3.0.0-develop.34",
"axios": "^0.21.4",
"dotenv": "^16.0.0",
"ethers": "^6.1.0",
"hardhat": "^2.22.16"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.12",
"@types/chai-almost": "^1.0.1",
"@types/chai-as-promised": "^7.1.3",
"@types/elliptic": "^6.4.14",
"@types/minimist": "^1.2.0",
"@types/mocha": "^9.1.0",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"chai": "^4.2.0",
"chai-almost": "^1.0.1",
"chai-as-promised": "^7.1.1",
"cspell": "^8.14.4",
"eslint": "^8.46.0",
"ganache": "7.9.2",
"solhint": "3.3.6",
"solidity-coverage": "^0.8.4",
"ts-generator": "^0.1.1",
"ts-node": "^8.10.2",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}