forked from pancakeswap/pancake-farm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.32 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
{
"name": "@passive-income/dpex-farm",
"version": "1.0.0",
"description": "Farm smart contracts for farming on dpex",
"engines": {
"node": ">=10"
},
"homepage": "http://dpex.passive-income.io",
"repository": {
"type": "git",
"url": "https://github.com/PSI-Passive-Income/DPEX-farm.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"files": [
"abi",
"artifacts",
"contracts",
"typechain"
],
"dependencies": {
"@openzeppelin/contracts": "^3.3.0-solc-0.7",
"@openzeppelin/contracts-upgradeable": "^3.3.0-solc-0.7",
"@openzeppelin/test-helpers": "^0.5.10",
"@pancakeswap/pancake-swap-lib": "^0.0.1",
"@passive-income/psi-contracts": "~1.0.9",
"@passive-income/dpex-swap-core": "~0.1.9",
"@passive-income/dpex-peripheral": "~1.1.6",
"@uniswap/lib": "1.1.1",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.5.0",
"@openzeppelin/truffle-upgrades": "^1.4.0",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.21",
"axios": "^0.21.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.3.0",
"ethereumjs-util": "^6.2.0",
"ethers": "^5.0.31",
"hardhat": "^2.0.11",
"hardhat-abi-exporter": "^2.0.8",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-tracer": "^1.0.0-alpha.2",
"hardhat-typechain": "^0.3.4",
"mocha": "^8.2.1",
"ncp": "^2.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"solc": "^0.7.6",
"solidity-coverage": "0.7.16",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3"
},
"resolutions": {
"ethers": "^5.0.31"
},
"scripts": {
"lint": "yarn prettier ./test/*.ts --check",
"lint:fix": "yarn prettier ./test/*.ts --write",
"clean": "rimraf ./abi/ && rimraf ./artifacts/ && rimraf ./cache/ && rimraf ./typechain/",
"precompile": "yarn clean",
"compile": "hardhat compile",
"pretest": "yarn compile",
"test": "hardhat test",
"prepublishOnly": "yarn test"
},
"license": "GPL-3.0-or-later"
}