forked from liquality/electrs-batch-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 762 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 762 Bytes
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
{
"name": "electrs-batch-server",
"version": "1.0.4",
"description": "Electrs middleware server for batch API calls",
"main": "index.js",
"bin": {
"electrs-batch-server": "./bin/electrs-batch-server"
},
"scripts": {
"test": "standard",
"start": "node -r dotenv/config index.js"
},
"author": "Liquality <info@liquality.io>",
"license": "MIT",
"dependencies": {
"@sentry/node": "^5.22.3",
"axios": "^0.20.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"helmet": "^4.1.0",
"http-errors": "^1.8.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"dotenv": "^10.0.0",
"standard": "^14.3.4"
}
}