-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.58 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
{
"name": "@daocasino/bankroller-core",
"version": "0.2.6",
"description": "Core bankroller functionality",
"main": "./lib/index",
"scripts": {
"tsmon": "nodemon --delay 2 --inspect --watch ../ --ignore ../dc-protocol -r ts-node/register --",
"build:ts": "yarn typescript",
"build": "yarn typescript",
"typescript": "tsc --build",
"clean": "rimraf lib",
"reset": "rm -rf ./data/DB && rm -rf ./data/messaging",
"test:ping": "mocha --timeout 99999999 -r ts-node/register src/__tests__/PingService.test.ts",
"test:ping:libp2p": "DC_TRANSPORT=LIBP2P yarn test:ping",
"test:bankroller": "ACCOUNT_PRIVATE_KEY=0xf45ce6697b0dd472f5f290953274b279ad15ea956065b9a9a7b443eb8f8a7267 DC_NETWORK=ropsten DAPPS_PATH=../bankroller-node/data/dapps/ PLATFORM_ID=test mocha --timeout 99999999 -r ts-node/register src/__tests__/bankroller.test.ts",
"test:bankroller:libp2p": "DC_TRANSPORT=LIBP2P yarn test:bankroller",
"test:bankroller:ipfs": "DC_TRANSPORT=IPFS yarn test:bankroller"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@daocasino/dc-configs": "^0.2.6",
"@daocasino/dc-core": "^0.2.6",
"@daocasino/dc-ethereum-utils": "^0.2.6",
"@daocasino/dc-logging": "^0.2.6",
"@daocasino/dc-messaging": "^0.2.6",
"@daocasino/dc-statistics-client": "^0.2.6",
"@daocasino/dc-webapi": "^0.2.6",
"chai": "^4.1.2",
"commander": "^2.19.0",
"mocha": "^3.2.0",
"node-fetch": "^2.2.0",
"nodemon": "^1.18.5",
"rimraf": "2.6.2",
"raven": "^2.6.4"
},
"gitHead": "c83ce2ab1c77daa4fabf666260b0698d37dbf312"
}