-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1005 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
25
26
27
28
29
30
31
{
"name": "blockchain",
"version": "1.0.0",
"description": "This is my blockchain creation experiment. Learing blockchain technology.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"node_1": "nodemon --watch dev -e js dev/api.js 3001 http://localhost:3001",
"node_2": "nodemon --watch dev -e js dev/api.js 3002 http://localhost:3002",
"node_3": "nodemon --watch dev -e js dev/api.js 3003 http://localhost:3003",
"node_4": "nodemon --watch dev -e js dev/api.js 3004 http://localhost:3004",
"node_5": "nodemon --watch dev -e js dev/api.js 3005 http://localhost:3005"
},
"keywords": [
"blockchain",
"selfmade",
"learningCrypto",
"Crypto"
],
"author": "Neil Mascarenhas",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.21.0",
"nodemon": "^3.1.7",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"sha256": "^0.2.0",
"uuid": "^8.1.0"
}
}