generated from pokt-network/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
137 lines (137 loc) · 5.38 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@pokt-network/pocket-gateway",
"version": "1.0.5",
"description": "The Pocket Network Gateway is a single endpoint that will offer access to the full range of supported blockchains through one URL.",
"license": "MIT",
"keywords": [
"Pocket",
"Network",
"SDK",
"Core",
"JavaScript",
"Blockchain",
"Tool"
],
"main": "index.js",
"engines": {
"node": ">=12.16.0 <=16.17"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "prettier --check . && npm run eslint .",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" --ignore-path \"./dist/**/*.js\" --ignore-path \"./dist/**/*.js.map\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "prettier --write .",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-tsc && INTEGRATION_TEST=false SILENT_LOGGING=true POCKET_NETWORK_NODE_URL='https://user:[email protected]:18081' mocha --exit --recursive dist/tests",
"test:integration": "lb-tsc && INTEGRATION_TEST=true POCKET_NETWORK_NODE_URL='https://user:[email protected]:18081' mocha --exit --recursive dist/tests -f \"Pocket HTTP DB Client\"",
"test:one": "lb-tsc && INTEGRATION_TEST=false SILENT_LOGGING=true POCKET_NETWORK_NODE_URL='https://user:[email protected]:18081' mocha --exit --recursive dist/tests -f",
"test:file": "lb-tsc && POCKET_NETWORK_NODE_URL='https://user:[email protected]:18081' mocha --exit",
"test:log": "lb-tsc && POCKET_NETWORK_NODE_URL='https://user:[email protected]:18081' mocha --exit --recursive dist/tests",
"test:parallel": "lb-tsc && SILENT_LOGGING=true POCKET_NETWORK_NODE_URL='https://user:[email protected]:18081' mocha -p --exit --recursive dist/tests",
"test:cover": "lb-tsc && SILENT_LOGGING=true POCKET_NETWORK_NODE_URL='https://user:[email protected]:18081' nyc mocha --exit --recursive dist/tests",
"test:dev": "lb-mocha --allow-console-logs dist/tests/**/*.js && npm run posttest",
"docker:build": "docker build -t pocket-gateway .",
"docker:run": "docker run -p 3000:3000 -d pocket-gateway",
"migrate": "node ./dist/migrate",
"prestart": "npm run build",
"start": "node -r source-map-support/register .",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"start:watch": "tsnodemon -x 'node -r source-map-support/register .'",
"services:db:up": "docker-compose -f stacks/local.yml up db",
"services:all:up": "docker-compose -f stacks/local.yml up -d --build",
"services:all:down": "docker-compose -f stacks/local.yml down --remove-orphans",
"tasks:db:download-production-data": "docker-compose -f stacks/tasks.yml up download-production-data",
"tasks:db:import-production-data": "docker-compose -f stacks/tasks.yml up import-production-data",
"prepare": "husky install",
"tasks:deploy:render-artifacts": "./scripts/render_deployment_artifacts.sh"
},
"repository": {
"type": "git"
},
"author": {
"name": "Alex Firmani",
"email": "[email protected]",
"homepage": "https://github.com/nymd"
},
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"tests"
],
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.112.0",
"@influxdata/influxdb-client": "^1.26.0",
"@loopback/boot": "^5.0.1",
"@loopback/context": "^5.0.1",
"@loopback/core": "^4.0.1",
"@loopback/repository": "^5.0.1",
"@loopback/rest": "^12.0.1",
"@loopback/service-proxy": "^5.0.1",
"@pokt-foundation/pocketjs-provider": "^0.0.6",
"@pokt-foundation/pocketjs-relayer": "^0.0.6",
"@pokt-foundation/pocketjs-signer": "^0.0.6",
"@pokt-foundation/pocketjs-types": "^0.0.6",
"@pokt-foundation/pocketjs-utils": "^0.0.6",
"assert": "^2.0.0",
"aws-sdk": "^2.1159.0",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"eslint-plugin-import": "^2.23.4",
"ethers": "^5.6.9",
"extract-domain": "^2.3.4",
"ioredis": "^5.0.6",
"jsonrpc-lite": "^2.2.0",
"lodash.get": "^4.4.2",
"log-timestamp": "^0.3.0",
"pg": "^8.2.1",
"pg-format": "^1.0.4",
"pocket-tools": "^0.2.1",
"shortid": "^2.2.15",
"strong-cryptor": "^2.2.0",
"winston": "^3.3.3",
"winston-cloudwatch": "^6.0.1",
"winston-logzio": "^5.1.2",
"winston-loki": "^6.0.6"
},
"devDependencies": {
"@loopback/build": "^9.0.1",
"@loopback/eslint-config": "^13.0.1",
"@loopback/testlab": "^5.0.1",
"@types/ioredis": "^4.26.6",
"@types/ioredis-mock": "^5.6.0",
"@types/node": "^18.0.0",
"@types/pg": "^8.6.4",
"@types/pg-format": "^1.0.1",
"@types/shortid": "0.0.29",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^4.3.0",
"eslint-plugin-mocha": "^10.0.3",
"husky": "^8.0.1",
"ioredis-mock": "^8.2.2",
"lint-staged": "^13.0.2",
"moq.ts": "^9.0.2",
"mustache": "^4.2.0",
"prettier": "^2.7.1",
"rewiremock": "^3.14.3",
"source-map-support": "^0.5.19",
"tsnodemon": "^1.2.2",
"typescript": "~4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}