-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 758 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 758 Bytes
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": "cryptochain",
"version": "1.0.0",
"description": "blockchain implementation using proof of work",
"repository": {
"type": "git",
"url": "https://github.com/Vinashu/cryptochain.git"
},
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"start": "node index.js",
"dev": "nodemon index.js",
"dev-peer": "cross-env GENERATE_PEER_PORT='true' nodemon index.js"
},
"keywords": [],
"author": "Rogerio de Leon Pereira",
"license": "ISC",
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^27.4.2",
"nodemon": "^2.0.15"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"hex-to-binary": "^1.0.1",
"pubnub": "^4.34.1",
"redis": "^4.0.0"
}
}