This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.52 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
{
"name": "TXJP_IBCO",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "DEVMOD=true truffle console",
"ganache": "ganache-cli -e 10000000 -m \"pull explain moon stereo foil tuna gospel tape battle come smooth fresh lizard culture review\"",
"test": "truffle test",
"coverage": "truffle run coverage",
"lint": "prettier './**/*.js' './**/*.sol' './**/*.md' --write",
"deploy:testnet": "truffle migrate --network rinkeby",
"deploy:mainnet": "truffle migrate --network main",
"changeOwner": "node scripts/transferOwnership.js",
"flattener": "truffle-flattener ./contracts/InitialOffering/TXJPInitialOffering.sol | awk '/SPDX-License-Identifier/&&c++>0 {next} 1' | awk '/pragma experimental ABIEncoderV2;/&&c++>0 {next} 1' > ./OneRouter.full.sol"
},
"author": "",
"license": "GPLv3",
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.4",
"@truffle/debug-utils": "^4.2.1",
"@truffle/hdwallet-provider": "^1.0.40",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"ganache-cli": "^6.12.1",
"mocha": "^7.2.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.55",
"solidity-coverage": "^0.7.10",
"truffle": "^5.1.42",
"truffle-flattener": "^1.5.0"
},
"dependencies": {
"@chainlink/contracts": "^0.0.8",
"@openzeppelin/contracts": "^3.1.0",
"@uniswap/v2-periphery": "^1.0.0-beta.0",
"web3": "^1.3.6",
"web3-eth-contract": "^1.3.6"
}
}