-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
{
"name": "@timeswap-labs/timeswap-v1-core",
"license": "BUSL-1.1",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "1.1.5-Beta",
"homepage": "https://timeswap.io",
"keywords": [
"timeswap",
"core",
"v1"
],
"repository": {
"type": "git",
"url": "https://github.com/Timeswap-Labs/Timeswap-V1-Core"
},
"files": [
"contracts/interfaces",
"contracts/libraries",
"contracts/TimeswapFactory.sol",
"contracts/TimeswapPair.sol",
"artifacts/contracts/TimeswapFactory.sol/TimeswapFactory.json",
"artifacts/contracts/TimeswapPair.sol/TimeswapPair.json",
"artifacts/contracts/interfaces/**/*.json",
"!artifacts/contracts/interfaces/**/*.dbg.json"
],
"engines": {
"node": ">=14"
},
"volta": {
"node": "16.14.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"dotenv": "^16.0.0",
"ethereum-waffle": "^4.0.0-alpha.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@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",
"async": "3.2.2",
"chai": "^4.3.6",
"decimal.js": "^10.3.1",
"ethers": "^5.6.0",
"hardhat": "^2.9.1",
"hardhat-contract-sizer": "^2.5.0",
"hardhat-deploy": "^0.10.6",
"mocha": "^9.2.2",
"solidity-coverage": "^0.7.20",
"ts-node": "^10.7.0",
"typechain": "^7.0.1",
"typescript": "^4.6.2"
},
"resolutions": {
"got": "11.8.5",
"undici": "5.6.1",
"yargs-parser": "21.0.1"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:hardhat": "hardhat test --network hardhat",
"coverage": "hardhat compile && hardhat coverage",
"prepare": "hardhat compile"
}
}