-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (41 loc) · 1.38 KB
/
package.json
File metadata and controls
42 lines (41 loc) · 1.38 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
{
"name": "blockchain",
"version": "1.0.0",
"description": "",
"main": "dist/api.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"node_1": "nodemon --watch './src' -e ts --exec 'tsc && node ./dist/networknode.js' 3001 http://localhost:3001 ",
"node_2": "nodemon --watch './src' -e ts --exec 'tsc && node ./dist/networknode.js' 3002 http://localhost:3002",
"node_3": "nodemon --watch './src' -e ts --exec 'tsc && node ./dist/networknode.js' 3003 http://localhost:3003",
"node_4": "nodemon --watch './src' -e ts --exec 'tsc && node ./dist/networknode.js' 3004 http://localhost:3004",
"node_5": "nodemon --watch './src' -e ts --exec 'tsc && node ./dist/networknode.js' 3005 http://localhost:3005"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maniarasan/Blockchain.git"
},
"keywords": [
"blockchain"
],
"author": "Maniarasan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Maniarasan/Blockchain/issues"
},
"homepage": "https://github.com/Maniarasan/Blockchain#readme",
"dependencies": {
"@types/uuid": "^8.3.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"nodemon": "^2.0.6",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sha256": "^0.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/sha256": "^0.2.0"
}
}