-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
108 lines (108 loc) · 3.71 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
{
"name": "@shardus/archiver",
"version": "3.5.7-0",
"engines": {
"node": "18.19.1"
},
"description": "",
"main": "./build/server.js",
"types": "./build/server.d.ts",
"files": [
"build/**/*",
"archiver-log.json",
"tx-list-restore.json",
"static/tickets.json"
],
"bin": {
"archive-server": "./build/server.js"
},
"scripts": {
"start": "npm run prepare && node build/server.js",
"txDigestCronServer": "npm run prepare && node build/txDigester.js",
"txDigestApiServer": "npm run prepare && node build/txDigestAPIserver.js",
"release": "npm run prepare && np --no-cleanup --no-tests --no-yarn --any-branch",
"check": "gts check",
"clean": "npm-run-all clean:*",
"clean:typescript": "gts clean",
"lint": "eslint \"./src/**/*.ts\"",
"test": "jest",
"format-check": "prettier --check './src/**/*.ts'",
"format-fix": "prettier --write './src/**/*.ts'",
"clean:artifacts": "shx rm -rf archiver-logs/ archiver-db/ data-logs/",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"update-docker": "docker build -t registry.gitlab.com/shardus/archive/archive-server:dev3 . && docker push registry.gitlab.com/shardus/archive/archive-server:dev3",
"update-docker-dev": "docker build -t registry.gitlab.com/shardus/archive/archive-server:dev . && docker push registry.gitlab.com/shardus/archive/archive-server:dev",
"update-schemas": "typescript-json-schema tsconfig.json NewData -o src/Data/schemas/NewData.json & typescript-json-schema tsconfig.json DataResponse -o src/Data/schemas/DataResponse.json",
"build": "tsc && npm run copy-static",
"copy-static": "cp -r static dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/shardeum/archive-server.git"
},
"publishConfig": {
"access": "public"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/shardus/archive/archive-server/issues"
},
"homepage": "https://gitlab.com/shardus/archive/archive-server#readme",
"devDependencies": {
"@types/node": "18.19.1",
"@types/jest": "29.5.14",
"@types/node-cron": "3.0.7",
"@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": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-no-unsanitized": "4.1.0",
"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": "8.0.4",
"npm-run-all": "4.1.5",
"shx": "0.3.4",
"ts-jest": "29.2.5",
"typescript": "4.9.5",
"typescript-json-schema": "0.51.0"
},
"dependencies": {
"@fastify/cors": "8.5.0",
"@fastify/rate-limit": "7.6.0",
"@shardus/archiver-discovery": "git+https://github.com/shardeum/lib-archiver-discovery#dev",
"@shardus/crypto-utils": "git+https://github.com/shardeum/lib-crypto-utils#dev",
"@shardus/types": "git+https://github.com/shardeum/lib-types#dev",
"deepmerge": "4.3.1",
"ethers": "6.13.4",
"fastify": "4.12.0",
"log4js": "6.9.1",
"log4js-extend": "0.2.1",
"minimist": "1.2.8",
"neverthrow": "6.2.2",
"node-cron": "3.0.2",
"node-fetch": "2.7.0",
"rfdc": "1.4.1",
"socket.io-client": "2.5.0",
"sqlite3": "5.1.7",
"streamroller": "3.1.5",
"tydb": "0.1.5"
},
"overrides": {
"axios": "1.6.1"
}
}