-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@whaleswap/contracts",
"description": "🎛 Core contracts for the Whaleswap protocol",
"version": "1.0.1",
"homepage": "https://whale.loans",
"repository": {
"type": "git",
"url": "https://github.com/WhaleLoans/whaleswap-core"
},
"keywords": [
"whaleswap",
"ethereum",
"core"
],
"files": [
"contracts",
"build"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"@uniswap/lib": "4.0.1-alpha",
"ethers": "^5.6.2",
"hardhat-change-network": "^0.0.7"
},
"devDependencies": {
"@ethersproject/providers": "^5.4.7",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "^6.2.0",
"hardhat": "^2.9.2",
"hardhat-abi-exporter": "^2.8.0",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"solc": "0.5.16",
"ts-node": "^8.5.4",
"typechain": "^8.0.0",
"typescript": "^4.5.2"
},
"scripts": {
"lint": "yarn prettier ./test/*.ts --check",
"lint:fix": "yarn prettier ./test/*.ts --write",
"compile": "hardhat compile",
"test": "hardhat test",
"prepublishOnly": "yarn test",
"deploy": "npx hardhat run scripts/deploy.ts"
},
"license": "GPL-3.0-or-later"
}