forked from Uniswap/liquidity-staker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "@uniswap/liquidity-staker",
"version": "1.0.2",
"author": "Uniswap Team",
"repository": {
"type": "git",
"url": "https://github.com/Uniswap/liquidity-staker"
},
"files": [
"build"
],
"engines": {
"node": ">=10"
},
"scripts": {
"precompile": "rimraf ./build/",
"compile": "waffle",
"pretest": "yarn compile",
"test": "mocha",
"lint": "prettier ./test/**/*.ts --check",
"prepublishOnly": "yarn test"
},
"dependencies": {
"openzeppelin-solidity-2.3.0": "npm:openzeppelin-solidity@2.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.1.0",
"ethereumjs-util": "^7.0.5",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"solc": "0.5.16",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.0.2"
}
}