-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 4.93 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 4.93 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@shardeum-foundation/explorer",
"version": "1.3.4",
"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 \"**/*.{js,jsx,ts,tsx,json}\"",
"format-fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"flush": "rm -fr db.sqlite3* statsDB.sqlite3*",
"release:prepatch": "npm run prepare && npm run build && npm version prepatch --preid=prerelease && git push --follow-tags",
"release:preminor": "npm run prepare && npm run build && npm version preminor --preid=prerelease && git push --follow-tags",
"release:premajor": "npm run prepare && npm run build && npm version premajor --preid=prerelease && git push --follow-tags",
"release:prerelease": "npm run prepare && npm run build && npm version prerelease --preid=prerelease && git push --follow-tags",
"release:patch": "npm run prepare && npm run build && npm version patch && git push --follow-tags",
"release:minor": "npm run prepare && npm run build && npm version minor && git push --follow-tags",
"release:major": "npm run prepare && npm run build && npm version major && git push --follow-tags"
},
"engines": {
"node": "20.19.3"
},
"dependencies": {
"@shardeum-foundation/lib-archiver-discovery": "1.3.1",
"@shardeum-foundation/lib-crypto-utils": "4.3.2",
"@shardeum-foundation/lib-types": "1.4.2",
"@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",
"@svgr/webpack": "8.0.1",
"@types/node": "18.19.1",
"@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.22",
"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": {
"@babel/core": "7.26.9",
"@babel/preset-env": "7.26.9",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/amqplib": "0.10.5",
"@types/fastify-cors": "2.1.0",
"@types/jest": "29.5.14",
"@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",
"babel-jest": "29.7.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",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nodemon": "2.0.22",
"pm2": "5.3.0",
"prettier": "2.8.1",
"supertest": "7.0.0",
"ts-jest": "29.2.6",
"typescript": "4.9.4"
},
"overrides": {
"semver": "7.5.3",
"qs": "6.11.0",
"ip": "2.0.0"
},
"publishConfig": {
"access": "public"
}
}