-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.21 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
{
"name": "@cortexdao/dao-contracts",
"version": "1.0.0",
"description": "",
"keywords": ["ethereum", "solidity", "defi"],
"files": ["contracts", "artifacts"],
"scripts": {
"check": "yarn lint",
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "hardhat test tests/*",
"lint": "solhint contracts/**/*.sol contracts/*.sol",
"coverage": "yarn clean; hardhat coverage --testfiles \"tests/**/*.js\"",
"dot-only": "yarn dot-only-hunter tests",
"fork_mainnet": "ENABLE_FORKING=true yarn hardhat node --hostname 0.0.0.0"
},
"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/dao-contracts.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Cortex DAO",
"license": "ISC",
"bugs": {
"url": "https://github.com/cortexdao/dao-contracts/issues"
},
"homepage": "https://github.com/cortexdao/dao-contracts/README.md",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "2.1.6",
"@nomiclabs/hardhat-vyper": "3.0.0",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@nomiclabs/hardhat-web3": "2.0.0",
"chai": "4.3.4",
"dot-only-hunter": "1.0.3",
"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.16",
"hardhat": "2.9.3",
"hardhat-contract-sizer": "2.1.1",
"husky": "4.0.10",
"lint-staged": "10.5.4",
"prettier": "2.3.0",
"prettier-plugin-solidity": "1.0.0-beta.11",
"solhint": "3.3.7",
"solidity-coverage": "0.7.20",
"@gnosis.pm/safe-ethers-adapters": "0.1.0-alpha.3",
"axios": "^0.21.1",
"axios-retry": "^3.2.3"
},
"dependencies": {
"@openzeppelin/contracts": "4.5.0",
"@openzeppelin/contracts-upgradeable": "4.5.0",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"lodash": "^4.17.21",
"yargs": "^16.1.1"
}
}