-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·91 lines (91 loc) · 3.53 KB
/
package.json
File metadata and controls
executable file
·91 lines (91 loc) · 3.53 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@apex-protocol/periphery",
"version": "0.1.0",
"description": "Smart contracts of ApeX Protocol",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ApeX-Protocol/periphery"
},
"keywords": [
"apex"
],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ApeX-Protocol/periphery/issues"
},
"homepage": "https://apex.exchange",
"files": [
"contracts/*",
"artifacts/contracts/**/*.json",
"!artifacts/contracts/**/*.dbg.json"
],
"engines": {
"node": ">=10"
},
"scripts": {
"compile": "npx hardhat compile",
"compile_watch": "npx hardhat watch compilation",
"test": "npx hardhat test",
"test_watch": "npx hardhat watch test",
"deploy_l1_main": "hardhat run scripts/deploy_l1.js --network mainnet",
"deploy_banana_main": "hardhat run scripts/deploy_banana.js --network mainnet",
"deploy_bonding_arbi": "hardhat run scripts/deploy_bonding.js --network arbitrumOne",
"deploy_staking_arbi": "hardhat run scripts/deploy_staking.js --network arbitrumOne",
"deploy_referral_arbi": "hardhat run scripts/deploy_referral.js --network arbitrumOne",
"deploy_nft_rebate_arbi": "hardhat run scripts/deploy_nft_rebate.js --network arbitrumOne",
"deploy_merkle_arbi": "hardhat run scripts/deploy_merkle.js --network arbitrumOne",
"deploy_l1_test": "hardhat run scripts/deploy_l1.js --network rinkeby",
"deploy_bonding_test": "hardhat run scripts/deploy_bonding.js --network arbitrumTestnet",
"deploy_staking_test": "hardhat run scripts/deploy_staking.js --network goerli",
"deploy_referral_test": "hardhat run scripts/deploy_referral.js --network arbitrumTestnet",
"deploy_nft_rebate_test": "hardhat run scripts/deploy_nft_rebate.js --network arbitrumTestnet",
"deploy_merkle_test": "hardhat run scripts/deploy_merkle.js --network goerli",
"deploy_banana_test": "hardhat run scripts/deploy_banana.js --network goerli",
"deploy_banana2": "hardhat run scripts/deploy_banana2.js --network ",
"deploy_banana2_test": "hardhat run scripts/deploy_banana2_sepolia.js --network sepolia",
"deploy_esapex2": "hardhat run scripts/deploy_esapex2.js --network ",
"verify_esapex2": "hardhat run scripts/verify.js --network "
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@uniswap/v2-core": "1.0.1",
"arb-ts": "^1.0.0-beta.4",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.10.2",
"hardhat-deploy": "^0.9.4",
"hardhat-gas-reporter": "^1.0.4",
"keccak256": "^1.0.2",
"merkletreejs": "^0.2.13",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@apex-protocol/core": "0.0.2",
"@apex-protocol/v0": "^0.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v3-core": "^1.0.0",
"dotenv": "^10.0.0",
"hardhat-watcher": "^2.1.1"
}
}