mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
Update package.json in balance transfer to fetch the latest published fabric-client and fabric-ca-client npm module versions. Change-Id: Ica95ae1671f257322096863509bf67fa11a3dd59 Signed-off-by: rameshthoomu <rameshbabu.thoomu@gmail.com>
33 lines
825 B
JSON
33 lines
825 B
JSON
{
|
|
"name": "balance-transfer",
|
|
"version": "1.0.0",
|
|
"description": "A balance-transfer example node program to demonstrate using node.js SDK APIs",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node app.js"
|
|
},
|
|
"keywords": [
|
|
"fabric-client sample app",
|
|
"balance-transfer node sample",
|
|
"v1.0 fabric nodesdk sample"
|
|
],
|
|
"engines": {
|
|
"node": ">=6.9.5 <7.0",
|
|
"npm": ">=3.10.10 <4.0"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"body-parser": "^1.17.1",
|
|
"cookie-parser": "^1.4.3",
|
|
"cors": "^2.8.3",
|
|
"express": "^4.15.2",
|
|
"express-bearer-token": "^2.1.0",
|
|
"express-jwt": "^5.1.0",
|
|
"express-session": "^1.15.2",
|
|
"fabric-ca-client": "~1.0.0",
|
|
"fabric-client": "~1.0.0",
|
|
"fs-extra": "^2.0.0",
|
|
"jsonwebtoken": "^7.3.0",
|
|
"log4js": "^0.6.38"
|
|
}
|
|
}
|