-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 3.11 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
{
"name": "indyread-daemon",
"version": "0.5.1",
"author": "Bryan Elee",
"license": "ISC",
"description": "Application for fetching Hyperledger Indy blockchain transactions.",
"main": "src/index.js",
"scripts": {
"rmlogs": "rimraf ./logs",
"watchinfo": "tail -f ./logs/info/*",
"watchwarn": "tail -f ./logs/warn/*",
"watcherror": "tail -f ./logs/error/*",
"lint": "standard",
"lint:fix": "standard --fix",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"dev:sovrin:staging:builder": "cross-env NODE_ENV=development WORKER_CONFIGS=app-configs/sovstaging.json,app-configs/sovbuilder.json nodemon src/index.js",
"dev:sovrin:builder": "cross-env NODE_ENV=development WORKER_CONFIGS=app-configs/sovbuilder.json nodemon src/index.js",
"dev:sovrin:staging": "cross-env NODE_ENV=development WORKER_CONFIGS=app-configs/sovstaging.json nodemon src/index.js",
"dev:sovrin:sovmain": "cross-env NODE_ENV=development WORKER_CONFIGS=app-configs/sovmain.json nodemon src/index.js",
"dev:sovrin": "cross-env NODE_ENV=development WORKER_CONFIGS=app-configs/sovmain.json,app-configs/sovstaging.json,app-configs/sovbuilder.json nodemon src/index.js",
"start": "cross-env NODE_ENV=production node ./src/index.js",
"start:locahost": "cross-env ENVIRONMENT=localhost node ./src/index.js",
"test:unit": "jest test/unit",
"test:unit:pipeline": "jest test/unit/pipelines",
"test:integration": "cross-env CLEAN_HYDRATE_CLEAN=true jest test/integration",
"networks:list": "ls ~/.indy_client/pool",
"networks:add:localhost": "bash genesis/localhost/setup.sh",
"networks:add:sovrin": "bash setup.sh",
"elastic:delete:sovrin": "bash delete-es-indices.sh",
"kibana-export": "elasticdump --input=http://localhost:9200/.kibana_1 --output=kibana-index/esindex.kibana_1.json --type=data && elasticdump --input=http://localhost:9200/.kibana_1 --output=kibana-index/esindex_mapping.kibana_1.json --type=mapping",
"kibana-import": "elasticdump --input=kibana-index/esindex.kibana_1.json --output=http://localhost:9200/.kibana_1 --type=data && elasticdump --input=kibana-index/esindex_mapping.kibana_1.json --output=http://localhost:9200/.kibana_1 --type=mapping"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@elastic/elasticsearch": "^7.4.0",
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"cross-env": "^5.2.1",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"express-prettify": "^0.1.1",
"geoip-lite": "^1.3.8",
"vdr-tools": "0.8.5",
"indyscan-storage": "file:../packages/indyscan-storage",
"indyscan-txtype": "file:../packages/indyscan-txtype",
"joi": "^14.3.1",
"mkdirp": "^0.5.5",
"mustache": "^4.0.0",
"sleep-promise": "^8.0.1",
"socket.io": "^2.4.1",
"util": "^0.11.1",
"uuid": "^3.4.0",
"winston": "^3.2.1",
"winston-elasticsearch": "^0.8.8",
"write": "^1.0.3"
},
"devDependencies": {
"canonical-json": "0.0.4",
"elasticdump": "^6.25.0",
"@types/jest": "^26.0.23",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"nodemon": "^1.19.4",
"standard": "^14.3.4"
}
}