-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
38 lines (38 loc) · 1.16 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
{
"type": "module",
"name": "moonwell-contracts-v2",
"version": "1.0.0",
"description": "The Moonwell Protocol is a cross-chain lending and borrowing protocol.",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"scripts": {
"prepare": "husky",
"lint": "npx solhint --config ./.solhintrc --ignore-path .solhintignore 'src/**/*.sol'",
"prettier": "npx prettier --ignore-path .prettierignore --write .",
"start": "node safe/transactionFetcher.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonwell-fi/moonwell-contracts-v2.git"
},
"author": "",
"bugs": {
"url": "https://github.com/moonwell-fi/moonwell-contracts-v2/issues"
},
"homepage": "https://github.com/moonwell-fi/moonwell-contracts-v2#readme",
"devDependencies": {
"husky": "9.0.10",
"prettier": "3.2.4",
"prettier-plugin-solidity": "1.3.1",
"solhint": "4.5.2",
"tsx": "4.19.1"
},
"dependencies": {
"@safe-global/api-kit": "2.5.3",
"ethers": "5.7.0",
"ts-node": "10.9.2"
}
}