-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.58 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
{
"name": "steem-load-balancer",
"version": "1.0.0",
"description": "Load Balancer RPC Node for Steem Blockchain",
"main": "index.js",
"scripts": {
"test": "jest --config jest.config.mjs",
"coverage": "jest --config jest.config.mjs --coverage",
"format": "prettier --check 'src/*.js' 'js_tests/*.js'",
"format:fix": "prettier --write 'src/*.js' 'js_tests/*.js'",
"lint": "eslint 'src/*.js' 'js_tests/*.js' --max-warnings=0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DoctorLai/steem-load-balancer.git"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DoctorLai/steem-load-balancer/issues"
},
"homepage": "https://github.com/DoctorLai/steem-load-balancer#readme",
"dependencies": {
"abort-controller": "^3.0.0",
"async-mutex": "^0.5.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"js-yaml": "^4.1.0",
"json2csv": "^6.0.0-alpha.2",
"node-fetch": "^2.7.0",
"p-limit": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@vitest/coverage-v8": "^3.2.4",
"babel-jest": "^29.7.0",
"baseline-browser-mapping": "^2.9.14",
"eslint": "^9.27.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.3"
},
"jest": {
"transform": {},
"extensionsToTreatAsEsm": [
".js"
],
"testEnvironment": "node"
}
}