forked from keep-network/tbtc-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.71 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
{
"name": "@keep-network/tbtc-v2-yearn",
"license": "MIT",
"scripts": {
"build": "hardhat compile",
"deploy": "hardhat deploy --export export.json",
"format": "npm run lint && prettier --check .",
"format:fix": "npm run lint:fix && prettier --write .",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "eslint .",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:fix": "npm run lint:fix:js && npm run lint:fix:sol",
"lint:fix:js": "eslint . --fix",
"lint:fix:sol": "solhint 'contracts/**/*.sol' --fix",
"size-contracts": "hardhat compile && hardhat size-contracts",
"test": "hardhat test",
"test:system": "NODE_ENV=system-test hardhat test ./test/system/*.test.js"
},
"dependencies": {
"@keep-network/yearn-vaults": "github:keep-network/yearn-vaults.git#yearn-vaults-v0.4.3-1",
"@openzeppelin/contracts": "3.4.0"
},
"devDependencies": {
"@keep-network/hardhat-helpers": "github:keep-network/hardhat-helpers#v0.1.0",
"@keep-network/hardhat-local-networks-config": "^0.1.0-pre.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep#0.3.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.3.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.8.11",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.11 ",
"solhint": "^3.3.6",
"solhint-config-keep": "github:keep-network/solhint-config-keep",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">= 14.0.0"
}
}