forked from ton-blockchain/bridge-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "TONBridge",
"version": "0.0.1",
"description": "Contract for reaching consensus about minting wrapped TON coins on Ethereum-like blockchains",
"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",
"ganache": "ganache-cli -i 666 -p 8545 -m 'uphold wide shed another couch focus hidden soup lazy top salon salute'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/issues"
},
"homepage": "https://github.com/#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.0.0",
"@truffle/hdwallet-provider": "^2.1.15",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-shallow-deep-equal": "^1.4.6",
"eth-sig-util": "^3.0.1",
"truffle-contract-size": "^2.0.0",
"truffle-plugin-verify": "^0.5.4",
"web3": "^4.13.0"
},
"devDependencies": {
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eth-gas-reporter": "^0.2.25",
"truffle": "^5.8.2"
}
}