-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "upgrade-via-multisigwallet",
"license": "MIT",
"version": "2.1.1",
"repository": "[email protected]:Crossbell-Box/upgrade-via-multisigwallet.git",
"devDependencies": {
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-4": "npm:@openzeppelin/[email protected]",
"dotenv": "^16.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.0",
"ts-node": "^10.9.1",
"typechain": "^5.1.2",
"typescript": "^5.0.0"
},
"scripts": {
"setup": "make clean && make build",
"sync": "make install",
"build": "make build",
"test": "make foundry-test",
"snapshot": "make snapshot",
"lint": "make lint",
"solhint": "make solhint",
"upgradeable": "make upgradeable",
"mythril": "make mythril"
},
"lint-staged": {
"*": "make lint"
},
"dependencies": {}
}