-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.53 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": "kalypso-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"accounts": "npx hardhat accounts",
"clean": "npx hardhat clean && forge clean",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage --solcoverjs ./contracts/.solcover.js",
"prettier-contracts": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"prettier-others": "npx prettier --write .",
"prettier": "npm run prettier-contracts && npm run prettier-others",
"test": "npx hardhat test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marlinprotocol/kalypso-contracts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/marlinprotocol/kalypso-contracts/issues"
},
"homepage": "https://github.com/marlinprotocol/kalypso-contracts#readme",
"devDependencies": {
"@types/node-gzip": "^1.1.0",
"eciesjs": "^0.4.4",
"ethers": "^6.6.6",
"hardhat": "^2.17.0",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.3",
"typescript": "^5.3.2"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.1.0",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"bignumber.js": "^9.1.1",
"dotenv": "^16.3.1",
"node-gzip": "^1.1.2"
}
}