-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.89 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
{
"name": "@skalenetwork/upgrade-tools",
"version": "3.0.0",
"description": "Scripts to support upgrades of smart contracts",
"files": [
"dist/**/*"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "[email protected]:skalenetwork/upgrade-tools.git",
"author": "Dmytro Stebaiev <[email protected]>",
"license": "AGPL-3.0",
"private": false,
"scripts": {
"prepare": "yarn hooks && yarn install-peers",
"compile": "npx hardhat typechain && tsc",
"prepublishOnly": "yarn compile",
"install-peers": "install-peers -f",
"hooks": "git config core.hooksPath .githooks || true",
"no-hooks": "git config core.hooksPath .git/hooks",
"fullCheck": "yarn compile && yarn eslint && yarn cspell",
"eslint": "npx eslint .",
"cspell": "npx cspell \"**/*\""
},
"devDependencies": {
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"@tsconfig/recommended": "^1.0.2",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.6.0",
"cspell": "^8.8.3",
"eslint": "^8.15.0",
"install-peers-cli": "^2.2.0",
"ts-node": "^10.5.0",
"typechain": "^8.3.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@safe-global/api-kit": "^2.4.1",
"@safe-global/protocol-kit": "^5.0.1",
"@safe-global/safe-core-sdk-types": "^5.0.1",
"@skalenetwork/skale-contracts-ethers-v6": "^1.0.2-develop.30",
"axios": "^1.4.0",
"ethereumjs-util": "^7.1.4",
"semaphore-async-await": "^1.5.1"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@openzeppelin/hardhat-upgrades": "^3.1.1",
"@openzeppelin/upgrades-core": "^1.27.1",
"@types/mocha": "^9.1.0",
"ethers": "^6.7.1",
"hardhat": "^2.9.9"
}
}