-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 912 Bytes
/
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
{
"name": "javascript-proof-of-work-blockchain",
"version": "1.0.0",
"description": "Simple javascript-based blockchain using proof-of-work mechanism",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bc_node1": "nodemon --watch src -e js src/bcNode.js 5001 http://localhost:5001",
"bc_node2": "nodemon --watch src -e js src/bcNode.js 5002 http://localhost:5002",
"bc_node3": "nodemon --watch src -e js src/bcNode.js 5003 http://localhost:5003",
"bc_node4": "nodemon --watch src -e js src/bcNode.js 5004 http://localhost:5004",
"bc_node5": "nodemon --watch src -e js src/bcNode.js 5005 http://localhost:5005"
},
"author": "eugene",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"nodemon": "^2.0.14",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sha256": "^0.2.0",
"uuid": "^8.3.2"
}
}