-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 KB
/
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
32
33
34
35
36
37
{
"name": "scriptcoin-blockchain",
"version": "1.0.0",
"description": "This a an advanced full-stack blockchain built with javascript on both frontend and backend.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "npm run start-redis && nodemon index.js",
"dev-peer": "cross-env GENERATE_PEER_PORT='true' nodemon index.js",
"start-redis": "redis-server --daemonize yes",
"test": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Johnsonojo/scriptcoin-blockchain.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Johnsonojo/scriptcoin-blockchain/issues"
},
"homepage": "https://github.com/Johnsonojo/scriptcoin-blockchain#readme",
"devDependencies": {
"cross-env": "^6.0.3",
"jest": "^29.3.1",
"nodemon": "^2.0.20"
},
"dependencies": {
"body-parser": "^1.20.1",
"express": "^4.19.2",
"hex-to-binary": "^1.0.1",
"redis": "^3.1.1",
"request": "^2.88.0",
"sha256": "^0.2.0"
}
}