-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "@GioZaarour/moonlight-contracts",
"description": "Core contracts for the moonlight protocol",
"version": "1.0.0",
"homepage": "https://moonlight.xyz",
"repository": {
"type": "git",
"url": "https://github.com/GioZaarour/moonlight-contracts.git"
},
"keywords": [
"uniswap",
"ethereum",
"moonlight"
],
"files": [
"contracts",
"build"
],
"engines": {
"node": ">=10"
},
"scripts": {
"precompile": "rimraf ./build/",
"compile": "waffle",
"pretest": "yarn compile",
"test": "mocha",
"lint": "prettier ./test/**/*.ts --check",
"prepublishOnly": "yarn test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@openzeppelin/contracts": "^3.1.0",
"@openzeppelin/contracts-upgradeable": "3.4.2",
"@openzeppelin/test-helpers": "^0.5.6",
"@openzeppelin/truffle-upgrades": "^1.9.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@uniswap/v2-core": "^1.0.1",
"args-parser": "^1.3.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "^7.1.0",
"ethers": "^5.5.4",
"hardhat": "^2.9.1",
"hardhat-contract-sizer": "^2.5.0",
"hardhat-deploy": "^0.10.5",
"keccak256": "^1.0.3",
"mocha": "^9.1.1",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"solc": "0.6.12",
"solidity-coverage": "^0.7.16",
"truffle": "^5.3.0",
"truffle-flattener": "^1.4.4",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-plugin-verify": "^0.5.26",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"license": "MIT",
"dependencies": {
"@chainlink/contracts": "^0.4.1",
"chainlink": "^0.8.2",
"dotenv": "^16.0.1",
"truffle-contract-size": "^2.0.1"
}
}