-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 3.04 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
{
"name": "collector",
"version": "1.0.0",
"private": true,
"main": "dist/src/collector.js",
"scripts": {
"collector": "npm run prepare && node dist/src/collector.js",
"server": "npm run prepare && node dist/src/server.js",
"server:watch": "nodemon",
"log_server": "npm run prepare && node dist/src/log_server.js",
"test": "npm run prepare && jest",
"check": "gts check",
"clean": "rm -rf dist/ collector-db/ data-logs/",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"flush": "rm -fr collector-db/ data-logs/",
"lint": "eslint \"./src/**/*.ts\"",
"format-check": "prettier --check \"./src/**/*.ts\"",
"format-fix": "prettier --write \"./src/**/*.ts\""
},
"dependencies": {
"@ethereumjs/block": "^5.0.0",
"@ethereumjs/common": "^4.0.0",
"@ethereumjs/rlp": "5.0.0",
"@ethereumjs/tx": "5.0.0",
"@ethereumjs/util": "9.0.0",
"@ethereumjs/vm": "6.2.0",
"@fastify/cors": "8.3.0",
"@fastify/rate-limit": "8.0.3",
"@fastify/websocket": "8.2.0",
"@shardus/crypto-utils": "git+https://github.com/shardeum/lib-crypto-utils#v4.1.4",
"@shardus/types": "git+https://github.com/shardeum/lib-types#v1.2.13",
"@svgr/webpack": "8.0.1",
"@types/node": "18.19.1",
"@types/socket.io": "2.1.11",
"amqplib": "0.10.4",
"axios": "1.4.0",
"bn.js": "5.2.1",
"body-parser": "1.19.2",
"classnames": "2.3.2",
"compression": "1.7.3",
"cookie-parser": "1.4.3",
"cors": "2.8.5",
"decimal.js": "10.4.3",
"dotenv": "16.3.1",
"ejs": "3.1.9",
"ethers": "5.7.2",
"fast-stable-stringify": "1.0.0",
"fastify": "4.20.0",
"helmet": "3.21.1",
"human-standard-token-abi": "2.0.0",
"lodash": "4.17.21",
"moment": "2.29.4",
"morgan": "1.9.1",
"node-cron": "3.0.2",
"nodemon": "^2.0.20",
"point-of-view": "4.6.0",
"qs": "6.11.0",
"socket.io": "4.7.1",
"socket.io-client": "4.7.1",
"sqlite3": "5.1.6",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"web3": "4.0.2"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/fastify-cors": "2.1.0",
"@types/jest": "29.5.12",
"@types/lodash": "4.14.191",
"@types/node": "18.19.1",
"@types/node-cron": "3.0.7",
"@types/qs": "6.9.7",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"@typescript-eslint/typescript-estree": "5.61.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-xss": "0.1.12",
"gts": "3.1.1",
"jest": "29.7.0",
"nodemon": "^2.0.22",
"pm2": "^5.3.0",
"prettier": "2.8.1",
"ts-jest": "29.2.4",
"typescript": "4.9.4"
},
"overrides": {
"semver": "7.5.3",
"qs": "6.11.0"
}
}