forked from ApeX-Protocol/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 3.1 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
80
{
"name": "@apex-protocol/core",
"version": "0.0.2",
"description": "Smart contracts of ApeX Protocol",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ApeX-Protocol/apex-protocol"
},
"keywords": [
"apex"
],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ApeX-Protocol/apex-protocol/issues"
},
"homepage": "https://apex.exchange",
"files": [
"contracts/core",
"artifacts/contracts/core/**/*.json",
"!artifacts/contracts/core/**/*.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_core_arbi": "hardhat run scripts/deploy_core.js --network arbitrumOne",
"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_l1_test": "hardhat run scripts/deploy_l1.js --network rinkeby",
"deploy_core_test": "hardhat run scripts/deploy_core.js --network arbitrumTestnet",
"deploy_bonding_test": "hardhat run scripts/deploy_bonding.js --network arbitrumTestnet",
"deploy_staking_test": "hardhat run scripts/deploy_staking.js --network arbitrumTestnet",
"deploy_referral_test": "hardhat run scripts/deploy_referral.js --network arbitrumTestnet",
"deploy_eth": "hardhat run scripts/deploy.js --network rinkeby",
"deploy_arb": "hardhat run scripts/deploy.js --network arbitrumTestnet",
"deploy_opt": "hardhat run scripts/deploy.js --network optimismKovan",
"deploy_bonding": "hardhat run scripts/deploy_bonding.js --network arbitrumTestnet",
"deploy_reference": "hardhat run scripts/deploy_reference.js --network arbitrumTestnet",
"deploy_staking": "hardhat run scripts/deploy_staking.js --network arbitrumTestnet",
"deploy_nft": "hardhat run scripts/deploy_nft.js --network arbitrumTestnet",
"simulate_price": "hardhat run scripts/simulate_price.js"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@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.8.0",
"hardhat-deploy": "^0.9.4",
"hardhat-gas-reporter": "^1.0.4",
"keccak256": "^1.0.2",
"merkletreejs": "^0.2.13",
"solidity-coverage": "^0.7.17"
},
"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"
}
}