-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "rest-api",
"version": "1.1.0",
"description": "A robust and efficient RESTful API built with Node.js and Express, designed for interaction with the Knuth implementation of the Bitcoin Cash (BCH) blockchain. This API is equipped with features such as block and transaction fetching, block organization, caching, and environment-configured settings for enhanced scalability and performance.",
"main": "index.js",
"scripts": {
"test": "test",
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/k-nuth/rest-api.git"
},
"keywords": [
"bitcoin",
"cash",
"bch",
"blockchain",
"knuth",
"kth",
"rest",
"api",
"performance"
],
"author": "Knuth Project developers (https://kth.cash)",
"license": "MIT",
"bugs": {
"url": "https://github.com/k-nuth/rest-api/issues"
},
"homepage": "https://github.com/k-nuth/rest-api#readme",
"dependencies": {
"@knuth/bch": "^1.23.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"memory-cache": "^0.2.0"
}
}