-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.54 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.54 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "button-lending-pools",
"version": "1.0.0",
"description": "Button tokens on Compound lending pools.",
"keywords": [
"ethereum",
"ampleforth",
"compound",
"DeFi"
],
"homepage": "https://github.com/button-wood/button-lending-pools#readme",
"bugs": {
"url": "https://github.com/button-wood/button-lending-pools/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/button-wood/button-lending-pools.git"
},
"license": "GNU3",
"author": "eng@prl.one",
"scripts": {
"compile": "yarn hardhat compile",
"coverage": "yarn hardhat coverage --testfiles 'test/**/*.ts'",
"lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:list-different",
"lint:fix": "yarn run prettier && yarn run lint:sol:fix && yarn run lint:ts:fix",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --config ./.solhint.json --fix --max-warnings 1 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"lint:ts:fix": "eslint --config ./.eslintrc.yaml --fix --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
"profile": "REPORT_GAS=true yarn hardhat test",
"test": "yarn hardhat test"
},
"dependencies": {
"compound-protocol": "https://github.com/Rari-Capital/compound-protocol",
"uFragments": "https://github.com/ampleforth/uFragments#v1.1.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.3",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.6.8",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"ts-node": "^10.1.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
}
}