forked from shardus/relayer-distributor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.82 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
{
"name": "@shardus/distributor",
"version": "1.0.0",
"description": "",
"main": "./build/src/distributor.js",
"types": "./build/src/distributor.d.ts",
"files": [
"build/**/*",
"distributor-log.json"
],
"scripts": {
"release": "np --no-cleanup --no-tests --no-yarn --branch dev-release",
"test": "npm run prepare && jest",
"check": "gts check",
"clean": "npm-run-all clean:*",
"clean:typescript": "gts clean",
"clean:artifacts": "shx rm -rf distributor-logs/",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"start": "npm run prepare && node build/src/distributor.js",
"rmq_mode_apis": "npm run prepare && node build/src/rmq_api_server.js",
"lint": "eslint \"./src/**/*.ts\"",
"format-check": "prettier --check \"./src/**/*.ts\"",
"format-fix": "prettier --write \"./src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/shardeum/relayer-distributor"
},
"publishConfig": {
"access": "public"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shardeum/relayer-distributor/issues"
},
"homepage": "https://github.com/shardeum/relayer-distributor#readme",
"devDependencies": {
"@types/amqplib": "0.10.5",
"@types/axios": "0.14.0",
"@types/jest": "29.5.12",
"@types/node": "18.19.1",
"@types/node-fetch": "2.6.11",
"@types/socket.io": "2.1.13",
"@types/socket.io-client": "1.4.36",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/typescript-estree": "5.62.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-xss": "0.1.12",
"gts": "3.1.1",
"jest": "29.7.0",
"np": "7.7.0",
"npm-run-all": "4.1.5",
"shx": "0.3.4",
"ts-jest": "29.2.4",
"typescript": "4.9.5",
"typescript-json-schema": "0.51.0"
},
"dependencies": {
"@fastify/cors": "8.5.0",
"@fastify/rate-limit": "7.6.0",
"@shardus/crypto-utils": "git+https://github.com/shardeum/lib-crypto-utils#dev",
"@shardus/types": "git+https://github.com/shardeum/lib-types#dev",
"amqplib": "0.10.4",
"axios": "1.4.0",
"deepmerge": "4.3.1",
"eslint": "8.57.0",
"fastify": "4.12.0",
"log4js": "6.9.1",
"log4js-extend": "0.2.1",
"minimist": "1.2.8",
"neverthrow": "6.2.2",
"node-fetch": "2.7.0",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"sqlite3": "5.1.7",
"streamroller": "3.1.5",
"ws": "8.17.0"
}
}