-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
31 lines (30 loc) · 1.06 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
{
"name": "multisigwallet-predeployed",
"version": "1.1.0",
"description": "Predeployed smart contract that increases security by requiring multiple parties to agree on transactions before execution.",
"repository": "[email protected]:skalenetwork/multisigwallet-predeployed.git",
"author": "Vadim Yavorsky <[email protected]>",
"license": "LGPL-3.0",
"private": false,
"scripts": {
"compile": "npx hardhat clean && npx hardhat compile",
"cspell": "npx cspell \"**/*\"",
"hooks": "git config core.hooksPath .githooks || true",
"no-hooks": "git config core.hooksPath .git/hooks",
"fullcheck": "yarn cspell",
"prepare": "yarn compile && yarn hooks"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.11.18",
"chai": "^4.3.6",
"cspell": "^5.13.0",
"hardhat": "^2.10.1",
"ts-node": "^10.9.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2"
}
}