forked from bttcprotocol/pos-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·91 lines (91 loc) · 3.67 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "bttc-pos-portal",
"version": "1.5.2",
"description": "Contracts to facilitate transfer of assets between TRON Main Network / Ethereum Main Network / BSC Main Network and Bttc Network, using security of Bttc POS layer",
"main": "index.js",
"scripts": {
"testrpc": "ganache-cli --hardfork istanbul --mnemonic 'clock radar mass judge dismiss just intact mind resemble fringe diary casino' --gasLimit 8000000 --gasPrice 0 --port 9545 --networkId 53227",
"template:process": "node scripts/process-templates.js",
"bor": "cd test-blockchain && bash run-docker.sh",
"bor:clean": "cd test-blockchain && bash stop-docker.sh",
"truffle": "truffle",
"build": "truffle compile && npm run artifacts && npm run flatten",
"migrate:2": "truffle migrate --network root --f 2 --to 2",
"migrate:3": "truffle migrate --network child --f 3 --to 3",
"migrate:4": "truffle migrate --network root --f 4 --to 4",
"migrate:5": "truffle migrate --network child --f 5 --to 5",
"migrate:6": "truffle migrate --network child --f 6 --to 6",
"migrate:7": "truffle migrate --network child --f 7 --to 7",
"migrate:goerli:2": "truffle migrate --network mumbaiRoot --f 2 --to 2",
"migrate:bor:3": "truffle migrate --network child --f 3 --to 3",
"migrate:goerli:4": "truffle migrate --network mumbaiRoot --f 4 --to 4",
"migrate:bor:5": "truffle migrate --network child --f 5 --to 5",
"migrate": "npm run migrate:2 && npm run migrate:3 && npm run migrate:4 && npm run migrate:5",
"change-owners": "truffle exec scripts/change-owners.js",
"test": "truffle test",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "eslint test/**/*.js",
"lint:sol:fix": "solium -d contracts/ --fix",
"lint:sol": "solium -d contracts/",
"debug": "truffle debug",
"artifacts": "node scripts/generate-artifacts.js",
"flatten": "node scripts/flatten-contracts.js",
"test:ci": "scripts/run-test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bttcprotocol/pos-portal.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bttcprotocol/pos-portal/issues"
},
"homepage": "https://github.com/bttcprotocol/pos-portal#readme",
"config": {
"mnemonics": "clock radar mass judge dismiss just intact mind resemble fringe diary casino"
},
"devDependencies": {
"@openzeppelin/contracts": "^3.1.0",
"@openzeppelin/test-helpers": "^0.5.5",
"@truffle/hdwallet-provider": "^1.0.35",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bip39": "^2.5.0",
"bluebird": "^3.7.2",
"bn.js": "^5.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.2.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eth-block-tracker": "^4.4.3",
"eth-gas-reporter": "^0.2.17",
"eth-json-rpc-filters": "^4.1.1",
"eth-sig-util": "^2.5.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.0.2",
"ethereumjs-wallet": "0.6.2",
"ethers": "^4.0.46",
"fs": "0.0.1-security",
"glob": "^7.1.6",
"moonwalker": "github:atvanguard/moonwalker#4c4592e2d6c1744fbcd9452cf0f00e9beb236b21",
"nunjucks": "^3.2.1",
"solium": "^1.2.5",
"truffle": "^5.4.15",
"truffle-flattener": "^1.4.4",
"truffle-plugin-verify": "^0.5.15"
},
"dependencies": {
"ganache-cli": "^6.12.2"
}
}