-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.13 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
{
"name": "ClashBet",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"eos:start": "docker-compose up -d nodeos keosd",
"eos:start-p": "docker-compose -f docker-compose.proxy.yml up -d nodeos keosd",
"eos:stop": "docker-compose down",
"cleos": "docker-compose run --rm cleos",
"eosio-cpp": "docker-compose run --rm cdt",
"account:create": "./eos/scripts/create_account.sh",
"contract:deploy": "./eos/scripts/deploy_contract.sh",
"setup:wallets": "./eos/scripts/setup_wallets.sh",
"setup:contract": "./eos/scripts/setup_contract.sh",
"restart": "yarn eos:stop && rm -rf ./eos/data ./eos/wallets ./eos/work && yarn eos:start && ./eos/scripts/setup_wallets.sh && ./eos/scripts/setup_contract.sh",
"test": "yarn restart && mocha -R spec ./test/test.config.js ./test/specs --recursive"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
},
"dependencies": {
"dotenv": "^6.1.0",
"eosjs": "^20.0.0-beta2",
"eosjs-keygen": "^1.3.2",
"node-fetch": "^2.2.1",
"text-encoder": "0.0.4",
"axios": "^0.18.0",
"js-sha256": "^0.9.0",
"lodash": "^4.17.11"
}
}