fabric-samples/balance-transfer/typescript/package.json
David Enyeart 1252c7a0ee [FAB-8920] Pin fabric-samples to node.js "~1.1.0"
After creating release-1.1 branch, pin the fabric samples to use
version "~1.1.0" of node sdk and node chaincode.  This will forever
align fabric samples in release-1.1 branch with the 1.1.x node.js
releases.

Change-Id: Ia8caebf8b7df4d33dd71dc6223a4cb386023bb05
Signed-off-by: David Enyeart <enyeart@us.ibm.com>
2018-03-16 08:15:51 -04:00

37 lines
1 KiB
JSON

{
"name": "balance-transfer-typescript",
"version": "0.1.0",
"description": "The balance transfer sample written using typescript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Kapil Sachdeva",
"license": "Apache-2.0",
"devDependencies": {
"@types/body-parser": "^1.16.5",
"@types/cors": "^2.8.1",
"@types/express-jwt": "0.0.37",
"@types/express-session": "^1.15.3",
"@types/jsonwebtoken": "^7.2.3",
"@types/log4js": "0.0.33",
"@types/node": "^8.0.33",
"express-bearer-token": "^2.1.0",
"jsonwebtoken": "^8.1.0",
"ts-node": "^3.3.0",
"tslint": "^5.6.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.5.3"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.1",
"express-jwt": "^5.3.0",
"express-session": "^1.15.6",
"fabric-ca-client": "~1.1.0",
"fabric-client": "~1.1.0",
"log4js": "^0.6.38"
}
}