-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
38
39
40
41
42
{
"name": "CloudVRBlockchain",
"version": "1.0.0",
"description": "Blockchain project",
"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",
"test": "jest --watchAll",
"start-redis": "redis-server --daemonize yes"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gcaliene/CloudVRBlockchain.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gcaliene/CloudVRBlockchain/issues"
},
"homepage": "https://github.com/gcaliene/CloudVRBlockchain#readme",
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"body-parser": "^1.18.3",
"elliptic": "^6.4.1",
"express": "^4.16.4",
"hex-to-binary": "^1.0.1",
"morgan": "^1.9.1",
"redis": "^2.8.0",
"request": "^2.88.0",
"uuid": "^3.3.2"
}
}