-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "chainode",
"version": "1.0.0",
"description": "A private blockchain network based on node.js",
"main": "index.js",
"scripts": {
"start": "node main.js",
"build-webconsole-dev": "cd web-console/frontend && npm run build-dev",
"build-webconsole-prod": "cd web-console/frontend && npm run build-prod",
"test": "nyc mocha test --recursive --full-trace --exit",
"start-dev-env": "bin/run-dev-env up -d",
"stop-dev-env": "bin/run-dev-env down",
"create-dev-topics": "bin/create-topics",
"init-db": "bin/create-db/couchbase"
},
"engines": {
"node": ">=8.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/davidemiceli/chainode.git"
},
"keywords": [
"blockchain",
"blockchain-technology",
"private-blockchain",
"permissioned-blockchain",
"blockchain-network",
"fintech",
"p2p"
],
"author": "davidemiceli",
"license": "AGPL-3.0",
"maintainers": [
"davidemiceli"
],
"bugs": {
"url": "https://github.com/davidemiceli/chainode/issues"
},
"homepage": "https://github.com/davidemiceli/chainode#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"couchbase": "^2.6.2",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"kafka-node": "^3.0.1",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"node-rsa": "^1.0.2",
"redis": "^2.8.0",
"uuid": "^3.3.2",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.5.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
}
}