-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.42 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
{
"name": "@rehold-io/smart-contracts",
"version": "1.0.0",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true hardhat test",
"test:coverage": "hardhat coverage",
"test:size-contracts": "hardhat size-contracts",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"prettier": "prettier contracts/**/*.sol",
"prettier:write": "prettier --write contracts/**/*.sol",
"solhint": "solhint -f table contracts/**/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rehold-io/smart-contracts.git"
},
"license": "BUSL-1.1",
"bugs": {
"url": "https://github.com/rehold-io/smart-contracts/issues"
},
"homepage": "https://github.com/rehold-io/smart-contracts#readme",
"devDependencies": {
"@chainlink/contracts": "^0.5.1",
"@ethereum-waffle/mock-contract": "^3.4.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@openzeppelin/contracts": "^4.7.3",
"@rehold-io/eslint-config": "^1.0.2",
"@types/dotenv": "^8.2.0",
"bignumber.js": "^9.1.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hardhat": "^2.11.2",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
}
}