-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.95 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
{
"name": "@marlinorg/oyster-contracts",
"version": "1.0.0",
"description": "Contracts pertaining to Marlin Oyster",
"files": [
"/contracts/**/*.sol",
"!/contracts/mocks/**/*"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "npx hardhat test",
"benchmark": "npx hardhat test benchmarks/*.ts",
"solhint": "npx solhint -f table contracts/*.sol contracts/**/*.sol",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage",
"clean": "npx hardhat clean && rm -rf coverage && rm -rf artifacts && npx hardhat typechain",
"prettify:contracts": "npx prettier --write --plugin=prettier-plugin-solidity contracts/*.sol contracts/**/*.sol",
"prettify:test": "npx prettier --write test"
},
"repository": {
"type": "git",
"url": "https://github.com/marlinprotocol/oyster-contracts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/marlinprotocol/oyster-contracts/issues"
},
"homepage": "https://github.com/marlinprotocol/oyster-contracts",
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@openzeppelin/hardhat-upgrades": "3.4.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.0",
"@types/yargs": "^17.0.33",
"chai": "^4.5.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.2",
"hardhat": "2.22.12",
"hardhat-gas-reporter": "^2.2.1",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3",
"solidity-coverage": "^0.8.13",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.6.2",
"yargs": "^17.7.2"
}
}