-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.94 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@timeswap-labs/timeswap-v1-convenience",
"license": "BUSL-1.1",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "1.1.5-Beta",
"homepage": "https://timeswap.io",
"keywords": [
"timeswap",
"convenience",
"v1"
],
"repository": {
"type": "git",
"url": "https://github.com/Timeswap-Labs/Timeswap-V1-Convenience"
},
"files": [
"contracts/interfaces",
"contracts/libraries",
"contracts/base",
"contracts/BondPrincipal.sol",
"contracts/BondInterest.sol",
"contracts/CollateralizedDebt.sol",
"contracts/InsurancePrincipal.sol",
"contracts/InsuranceInterest.sol",
"contracts/Liquidity.sol",
"contracts/TimeswapConvenience.sol",
"artifacts/contracts/BondPrincipal.sol/BondPrincipal.json",
"artifacts/contracts/BondInterest.sol/BondInterest.json",
"artifacts/contracts/CollateralizedDebt.sol/CollateralizedDebt.json",
"artifacts/contracts/InsurancePrincipal.sol/InsurancePrincipal.json",
"artifacts/contracts/InsuranceInterest.sol/InsuranceInterest.json",
"artifacts/contracts/Liquidity.sol/Liquidity.json",
"artifacts/contracts/TimeswapConvenience.sol/TimeswapConvenience.json",
"artifacts/contracts/interfaces/**/*.json",
"artifacts/contracts/libraries/**/*.json",
"artifacts/contracts/base/**/*.json",
"!artifacts/contracts/interfaces/**/*.dbg.json",
"!artifacts/contracts/libraries/**/*.dbg.json",
"!artifacts/contracts/base/**/*.dbg.json"
],
"engines": {
"node": ">=14"
},
"volta": {
"node": "16.14.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"fast-check": "^2.23.0",
"hardhat-deploy": "^0.10.6",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.20"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@timeswap-labs/timeswap-v1-core": "1.1.5-Beta",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^5.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"ethereum-waffle": "^4.0.0-alpha.0",
"ethers": "^5.6.0",
"hardhat": "^2.9.1",
"hardhat-contract-sizer": "^2.5.0",
"mocha": "^9.2.2",
"ts-node": "^10.7.0",
"typechain": "^7.0.1",
"typescript": "^4.6.2"
},
"resolutions": {
"yargs-parser": "21.0.1",
"undici": "5.6.1",
"got": "11.8.5"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:hardhat": "hardhat test --network hardhat",
"test:parallel": "TS_NODE_PROJECT=./tsconfig.json mocha --require hardhat/register --recursive --parallel --exit --extension ts",
"coverage": "hardhat coverage",
"prepare": "hardhat compile"
}
}