-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "blockchain",
"version": "1.0.0",
"description": "creating own blockchain",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"node_1": "nodemon src/index.ts 3001 http://localhost:3001",
"node_2": "nodemon src/index.ts 3002 http://localhost:3002",
"node_3": "nodemon src/index.ts 3003 http://localhost:3003",
"node_4": "nodemon src/index.ts 3004 http://localhost:3004",
"testing": "nodemon src/test.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/CleanBread/own-blockchain.git"
},
"author": "CleanBread",
"license": "ISC",
"bugs": {
"url": "https://github.com/CleanBread/own-blockchain/issues"
},
"homepage": "https://github.com/CleanBread/own-blockchain#readme",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/sha256": "^0.2.0",
"@types/uuid": "^8.3.1",
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"nodemon": "^2.0.12",
"sha256": "^0.2.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"uuid": "^8.3.2"
}
}