-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.52 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": "mysofinance-core-protocol",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "hardhat clean && rm -rf abi/ && rm -rf artifacts/ && rm -rf dist/ && rm -rf typechain/",
"compile": "hardhat compile",
"prettier": "prettier --config .prettierrc --check \"{contracts,test}/**/*.{js,json,sol,ts}\"",
"prettier:write": "prettier --config .prettierrc --write \"{contracts,test}/**/*.{js,json,sol,ts}\"",
"test": "hardhat test",
"lint": "solhint \"contracts/**/*.sol\"",
"slither": "slither . --checklist",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysofinance/v1-core-protocol.git"
},
"keywords": [],
"author": "MYSO Finance",
"license": "ISC",
"bugs": {
"url": "https://github.com/mysofinance/v1-core-protocol/issues"
},
"homepage": "https://github.com/mysofinance/v1-core-protocol#readme",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"hardhat": "^2.9.9",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"prettier-plugin-solidity": "^1.1.1",
"solhint": "^3.3.8",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.21"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.0",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8"
}
}