-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.33 KB
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
{
"name": "ApeSwap-AMM-Periphery",
"version": "1.1.0-beta.0",
"description": "🎚 Router smart contracts for interacting with ApeSwap",
"engines": {
"node": ">=10"
},
"homepage": "https://apeswap.finance",
"repository": {
"type": "git",
"url": "https://github.com/ApeSwapFinance/apeswap-swap-periphery"
},
"scripts": {
"lint": "yarn prettier ./test/*.ts --check",
"lint:fix": "yarn prettier ./test/*.ts --write",
"clean": "rimraf ./build/",
"precompile": "yarn clean",
"compile": "waffle .waffle.json",
"precompile:truffle": "yarn clean",
"compile:truffle": "truffle compile",
"migrate": "truffle migrate --network",
"migrate:bsc": "truffle migrate --network bsc",
"migrate:polygon": "truffle migrate --network polygon",
"verify": "truffle run verify ApeRouter --network",
"verify:bsc": "truffle run verify ApeRouter --network bsc",
"verify:bsc:liq-helper": "truffle run verify LiquidityHelper --network bsc",
"migrate:testnet": "truffle migrate --network testnet",
"migrate:dev": "truffle migrate --network development",
"flatten": "truffle-flattener ./contracts/ApeRouter.sol --output ./ApeRouter_flat.sol",
"solt": "solt write ./contracts/ApeRouter.sol --npm --runs 999999 --output ./ApeRouter_stanardinput.json",
"test": "yarn compile:truffle && mocha",
"test:fast": "mocha",
"prepublishOnly": "yarn test"
},
"files": [
"build",
"contracts"
],
"dependencies": {
"@openzeppelin/contracts": "^3.4.1",
"@openzeppelin/contracts-upgradeable": "3.4.2",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.15",
"@openzeppelin/truffle-upgrades": "^1.15.0",
"@truffle/hdwallet-provider": "^1.4.0",
"@uniswap/lib": "1.1.1",
"@uniswap/v2-core": "^1.0.1",
"dotenv": "^16.0.1",
"ethers": "^5.3.0",
"truffle": "^5.1.65",
"truffle-flattener": "^1.5.0",
"truffle-plugin-verify": "^0.5.24"
},
"devDependencies": {
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"ethereum-waffle": "^3.3.0",
"ethereumjs-util": "^6.2.0",
"mocha": "^6.2.2",
"moment": "^2.29.1",
"ncp": "^2.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"solc": "0.6.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"license": "GPL-3.0-or-later"
}