-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
executable file
·70 lines (70 loc) · 2.4 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
{
"name": "@apex-protocol/core",
"version": "0.1.3",
"description": "Core Smart Contracts of ApeX Protocol",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ApeX-Protocol/core"
},
"keywords": [
"apex"
],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ApeX-Protocol/core/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_core_arbi": "hardhat run scripts/deploy_core.js --network arbitrumOne",
"deploy_fee_treasury_arbi": "hardhat run scripts/deploy_fee_treasury.js --network arbitrumOne",
"deploy_limit_order_arbi": "hardhat run scripts/deploy_limit_order.js --network arbitrumOne",
"deploy_core_test": "hardhat run scripts/deploy_core.js --network arbitrumTestnet",
"deploy_fee_treasury_test": "hardhat run scripts/deploy_fee_treasury.js --network arbitrumTestnet",
"deploy_limit_order_test": "hardhat run scripts/deploy_limit_order.js --network arbitrumTestnet",
"deploy_apex": "npx hardhat run scripts/deploy_apex.js --network ",
"verify_apex": "npx hardhat run scripts/verify_apex.js --network ",
"deploy_apex_mantle": "npx hardhat run scripts/deploy_apex_mantle.js --network ",
"verify_apex_mantle": "npx hardhat run scripts/verify_apex_mantle.js --network "
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@openzeppelin/test-helpers": "^0.5.15",
"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": {
"@openzeppelin/contracts": "^4.3.2",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v2-core": "1.0.1",
"dotenv": "^10.0.0",
"hardhat-watcher": "^2.1.1"
}
}