-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "@merofinance/protocol",
"license": "MIT",
"version": "1.2.1",
"main": "js/index.js",
"devDependencies": {
"@typechain/ethers-v5": "^9.0.0",
"ethers": "^5.4.0",
"hardhat": "^2.6.1",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.6",
"ts-node": "^9.0.0",
"typechain": "^7.0.0",
"typescript": "^4.0.5"
},
"scripts": {
"typechain": "npx typechain --target ethers-v5 'build/{contracts,interfaces}/!(MockCurve*).json' --out-dir typechain",
"prettier": "npx prettier --write 'contracts/**/*.sol'",
"lint": "npx prettier --list-different 'contracts/**/*.sol' && npx solhint 'contracts/**/*.sol'",
"tsc": "npx tsc --declaration --outDir js typechain/index.ts",
"prepublishOnly": "npm run typechain && npm run tsc"
},
"prettier": {
"printWidth": 100
},
"files": [
"config/deployments/map.json",
"js/*",
"build/contracts/*",
"build/interfaces/*"
],
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.5.1",
"@yield-protocol/utils-v2": "^2.6.0",
"@yield-protocol/vault-interfaces": "^2.4.1"
}
}