-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.73 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.73 KB
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
{
"name": "queryapi-runner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18.17"
},
"scripts": {
"build": "rm -rf ./dist && npm run codegen && tsc -p ./tsconfig.build.json",
"codegen": "rm -rf ./src/generated && proto-loader-gen-types --longs=String --enums=String --defaults --oneofs --grpcLib=@grpc/grpc-js --outDir=src/generated/ protos/*.proto",
"watch": "nodemon -e js,ts --watch src --ignore dist/ --exec 'npm run start:dev'",
"start": "npm run build && node dist/index.js",
"start:dev": "tsc -p ./tsconfig.build.json && node ./dist",
"start:docker": "node dist/index.js",
"test": "npm run codegen && node --experimental-vm-modules ./node_modules/.bin/jest --silent",
"lint": "eslint -c .eslintrc.js",
"script:suspend-indexer": "tsc -p ./tsconfig.json && node ./dist/scripts/suspend-indexer.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.3.1",
"@types/node-fetch": "^2.6.4",
"@types/pg": "^8.10.2",
"@types/pg-format": "^1.0.2",
"@types/pluralize": "^0.0.29",
"@types/verror": "^1.10.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"graphql-request": "^6.1.0",
"jest": "^29.6.2",
"nodemon": "^3.1.1",
"prettier": "^3.0.0",
"testcontainers": "^10.7.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.414.0",
"@google-cloud/logging-winston": "^6.0.0",
"@google-cloud/opentelemetry-cloud-trace-exporter": "^2.1.0",
"@grpc/grpc-js": "^1.9.12",
"@grpc/proto-loader": "^0.7.10",
"@near-lake/primitives": "0.5.0",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/exporter-zipkin": "^1.22.0",
"@opentelemetry/resources": "^1.22.0",
"@opentelemetry/sdk-node": "^0.50.0",
"@opentelemetry/sdk-trace-base": "^1.22.0",
"@opentelemetry/sdk-trace-node": "^1.22.0",
"@opentelemetry/semantic-conventions": "^1.22.0",
"express": "^4.18.2",
"graphql": "^16.8.1",
"long": "^5.2.3",
"node-fetch": "^2.6.11",
"node-sql-parser": "^5.0.0",
"pg": "^8.11.1",
"pg-format": "^1.0.4",
"pluralize": "^8.0.0",
"prom-client": "^14.2.0",
"redis": "^4.6.7",
"verror": "^1.10.1",
"vm2": "^3.9.19",
"winston": "^3.13.0",
"winston-transport": "^4.7.0"
}
}