-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.61 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
{
"name": "shardeum-explorer",
"version": "1.0.0",
"private": true,
"main": "dist/server.js",
"scripts": {
"server": "npm run prepare && node dist/server.js",
"server:watch": "nodemon",
"collector": "npm run prepare && node dist/collector.js",
"aggregator": "npm run prepare && node dist/aggregator.js",
"log_server": "npm run prepare && node dist/log_server.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:release": "npm run prepare && npm run build",
"lint": "eslint \"./src/**/*.ts\"",
"format-check": "prettier --check './src/**/*.ts'",
"format-fix": "prettier --write './src/**/*.ts'",
"test": "echo \"no tests available\" && exit 1",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"flush": "rm -fr db.sqlite3* statsDB.sqlite3*"
},
"dependencies": {
"@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/nextjs": "10.0.1",
"@fastify/rate-limit": "8.0.3",
"@fastify/websocket": "8.2.0",
"@shardus/archiver-discovery": "git+https://github.com/shardeum/lib-archiver-discovery#v1.1.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.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/socket.io": "2.1.11",
"amqplib": "0.10.4",
"axios": "1.7.4",
"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",
"csv-writer": "^1.6.0",
"decimal.js": "10.4.3",
"dotenv": "16.3.1",
"ejs": "3.1.10",
"ethers": "6.13.2",
"fast-stable-stringify": "1.0.0",
"fastify": "4.20.0",
"helmet": "3.21.1",
"highcharts": "10.3.2",
"highcharts-boost": "^0.1.7",
"highcharts-react-official": "3.1.0",
"human-standard-token-abi": "2.0.0",
"lodash": "4.17.21",
"moment": "2.29.4",
"morgan": "1.9.1",
"next": "13.3.4",
"node-cron": "3.0.2",
"node-sass": "7.0.3",
"nodemon": "^2.0.20",
"point-of-view": "4.6.0",
"qs": "6.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-tooltip": "4.5.1",
"sass": "1.56.1",
"socket.io": "4.7.1",
"socket.io-client": "4.7.1",
"sqlite3": "5.1.6",
"swr": "1.3.0",
"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/lodash": "4.14.191",
"@types/node": "18.16.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-next": "13.4.8",
"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",
"nodemon": "^2.0.22",
"pm2": "^5.3.0",
"prettier": "2.8.1",
"typescript": "4.9.4"
},
"overrides": {
"semver": "7.5.3",
"qs": "6.11.0",
"ip": "2.0.0"
}
}