-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
76 lines (76 loc) · 3.11 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
{
"name": "orion-exchange",
"version": "1.0.0",
"description": "Exchange contracts for the Orion Protocol",
"main": "truffle-config.js",
"scripts": {
"compile": "truffle compile --all",
"deploy": "truffle migrate --reset --network development",
"deployTestnet": "truffle migrate --network testnet",
"deployMainnet": "truffle migrate --network mainnet",
"test-balances": "truffle test test/2_balances.test.js",
"test-orders": "truffle test test/3_orders.test.js",
"test-orders-dev": "truffle test test/3_orders.test.js",
"test-proxy-dev": "truffle test test/4_proxy.test.js",
"test-pool-advanced": "npx truffle test ./test/12_orionpool_advanced.js --compile-none",
"test-pool-swap": "npx truffle test ./test/13_swap_through_pool.js --compile-none",
"test-orionpool": "hardhat test hardhat-tests/11_orionpool_hardhat.js",
"deploy-test": "truffle migrate --f 11 --to 11 --network bsc_testnet",
"deploy-test_9": "truffle migrate --f 9 --to 9 --network mainnet_kucoin",
"test-all": "npx truffle test --compile-none",
"flow": "node scripts/completeFlow.js",
"ganache": "ganache-cli -i 666 -p 8545 -m \"uphold wide shed another couch focus hidden soup lazy top salon salute\"",
"ganache-null": "ganache-cli -i 666 -p 8545 -m \"uphold wide shed another couch focus hidden soup lazy top salon salute\" > NUL",
"validate": "node scripts/validateV3",
"deploy-eth": "hardhat run migrations/deploy_depositless.js --network eth",
"deploy-ropsten": "hardhat run migrations/deploy_depositless.js --network ropsten"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orionprotocol/orion-exchange.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/orionprotocol/orion-exchange/issues"
},
"homepage": "https://github.com/orionprotocol/orion-exchange#readme",
"dependencies": {
"@chainlink/contracts": "0.0.11",
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "2.1.7",
"@nomiclabs/hardhat-truffle5": "2.0.0",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/contracts": "3.4.2",
"@openzeppelin/contracts-upgradeable": "3.4.2",
"@openzeppelin/hardhat-upgrades": "1.12.0",
"@openzeppelin/test-helpers": "0.5.15",
"@openzeppelin/truffle-upgrades": "1.10.0",
"@openzeppelin/upgrades-core": "1.10.0",
"@truffle/hdwallet-provider": "1.2.3",
"@types/chai": "4.2.12",
"@types/mocha": "8.2.2",
"chai-as-promised": "7.1.1",
"chai-shallow-deep-equal": "1.4.6",
"dotenv": "8.5.1",
"eth-gas-reporter": "0.2.22",
"eth-sig-util": "2.5.4",
"ethereum-waffle": "3.3.0",
"ethers": "5.5.1",
"ganache-cli": "6.12.2",
"hardhat": "2.6.8",
"hardhat-contract-sizer": "2.1.1",
"hardhat-gas-reporter": "1.0.4",
"long": "4.0.0",
"mocha": "8.4.0",
"node-fetch": "2.1.2",
"truffle": "5.4.16",
"truffle-contract-size": "2.0.1",
"truffle-flattener": "1.5.0",
"truffle-plugin-verify": "0.5.18",
"truffle-privatekey-provider": "^1.5.0",
"web3": "1.5.2"
}
}