forked from apy-finance/apy-core-public
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@cortexdao/protocol-contracts",
"version": "1.0.0",
"description": "",
"keywords": ["ethereum", "solidity", "defi"],
"files": ["contracts", "artifacts", "utils"],
"scripts": {
"check": "yarn lint",
"clean": "hardhat clean",
"compile": "hardhat compile",
"test:unit": "hardhat test test-unit/*",
"test:integration": "ENABLE_FORKING=true NODE_OPTIONS=--max_old_space_size=4096 hardhat test test-integration/*",
"test:e2e": "ENABLE_FORKING=true hardhat test test-e2e/*",
"lint": "solhint contracts/**/*.sol contracts/*.sol",
"coverage": "yarn clean; ENABLE_FORKING=true NODE_OPTIONS=--max_old_space_size=4096 hardhat coverage --testfiles \"test-{unit,integration}/**/*.js\"",
"dot-only": "yarn dot-only-hunter test-unit && yarn dot-only-hunter test-integration",
"fork_mainnet": "ENABLE_FORKING=true NODE_OPTIONS=--max_old_space_size=4096 yarn hardhat node --hostname 0.0.0.0 --fork-block-number 15227330"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "./git_hooks/commit-msg"
}
},
"lint-staged": {
"contracts/**/*.sol": "solhint -w 0",
"*.js": "eslint --cache --fix",
"*.{js,sol,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cortexdao/protocol-contracts.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Cortex DAO",
"license": "ISC",
"bugs": {
"url": "https://github.com/cortexdao/protocol-contracts/issues"
},
"homepage": "https://github.com/cortexdao/protocol-contracts/README.md",
"devDependencies": {
"@gnosis.pm/mock-contract": "^4.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.9",
"dot-only-hunter": "apy-finance/dot-only-hunter",
"dotenv": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"ethereum-waffle": "~3.4.0",
"ethers": "~5.4.7",
"ganache-time-traveler": "^1.0.15",
"hardhat": "2.6.6",
"hardhat-contract-sizer": "^2.1.1",
"husky": "4.0.10",
"lint-staged": "^10.2.11",
"prettier": "2.3.0",
"prettier-plugin-solidity": "1.0.0-beta.11",
"solhint": "^3.2.0",
"solidity-coverage": "^0.7.10"
},
"dependencies": {
"@chainlink/contracts": "0.0.9",
"@gnosis.pm/safe-ethers-adapters": "^0.1.0-alpha.3",
"@nomiclabs/hardhat-vyper": "^2.0.1",
"@openzeppelin/contracts": "3.4.0",
"@openzeppelin/contracts-ethereum-package": "3.0.0",
"abdk-libraries-solidity": "2.4.0",
"axios": "^0.21.1",
"axios-retry": "^3.2.3",
"bignumber.js": "^9.0.1",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"lodash": "^4.17.21",
"yargs": "^16.1.1"
}
}