mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
36 lines
1 KiB
JSON
36 lines
1 KiB
JSON
{
|
|
"name": "asset-transfer-basic",
|
|
"version": "1.0.0",
|
|
"description": "Asset Transfer Basic Application implemented in typeScript using fabric-gateway",
|
|
"main": "dist/app.js",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build:watch": "tsc -w",
|
|
"lint": "eslint . --ext .ts",
|
|
"prepare": "npm run build",
|
|
"pretest": "npm run lint",
|
|
"start": "node dist/app.js"
|
|
},
|
|
"engineStrict": true,
|
|
"author": "Hyperledger",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "^1.11.3",
|
|
"@hyperledger/fabric-gateway": "^1.6.0",
|
|
"dotenv": "^16.4.5",
|
|
"env-var": "^7.5.0",
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node18": "^18.2.2",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/node": "^18.18.6",
|
|
"@typescript-eslint/eslint-plugin": "^6.9.0",
|
|
"@typescript-eslint/parser": "^6.9.0",
|
|
"eslint": "^8.52.0",
|
|
"typescript": "~5.2.2"
|
|
}
|
|
}
|