mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Bumps the npm_and_yarn group with 5 updates in the /asset-transfer-basic/rest-api-typescript directory: | Package | From | To | | --- | --- | --- | | [express](https://github.com/expressjs/express) | `4.18.2` | `4.20.0` | | [fabric-network](https://github.com/hyperledger/fabric-sdk-node) | `2.2.19` | `2.2.20` | | [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) | `7.22.20` | `7.25.6` | | [braces](https://github.com/micromatch/braces) | `3.0.2` | `3.0.3` | | [msgpackr](https://github.com/kriszyp/msgpackr) | `1.9.9` | `1.11.0` | Updates `express` from 4.18.2 to 4.20.0 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/master/History.md) - [Commits](https://github.com/expressjs/express/compare/4.18.2...4.20.0) Updates `fabric-network` from 2.2.19 to 2.2.20 - [Release notes](https://github.com/hyperledger/fabric-sdk-node/releases) - [Changelog](https://github.com/hyperledger/fabric-sdk-node/blob/main/CHANGELOG.md) - [Commits](https://github.com/hyperledger/fabric-sdk-node/compare/v2.2.19...v2.2.20) Updates `@babel/traverse` from 7.22.20 to 7.25.6 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.25.6/packages/babel-traverse) Updates `@grpc/grpc-js` from 1.9.3 to 1.9.15 - [Release notes](https://github.com/grpc/grpc-node/releases) - [Commits](https://github.com/grpc/grpc-node/compare/@grpc/grpc-js@1.9.3...@grpc/grpc-js@1.9.15) Updates `axios` from 0.21.4 to 1.7.7 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v0.21.4...v1.7.7) Updates `braces` from 3.0.2 to 3.0.3 - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md) - [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3) Updates `elliptic` from 6.5.4 to 6.5.7 - [Commits](https://github.com/indutny/elliptic/compare/v6.5.4...v6.5.7) Updates `follow-redirects` from 1.15.2 to 1.15.9 - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.2...v1.15.9) Updates `jsrsasign` from 10.8.6 to 10.9.0 - [Release notes](https://github.com/kjur/jsrsasign/releases) - [Changelog](https://github.com/kjur/jsrsasign/blob/master/ChangeLog.txt) - [Commits](https://github.com/kjur/jsrsasign/compare/10.8.6...10.9.0) Updates `msgpackr` from 1.9.9 to 1.11.0 - [Release notes](https://github.com/kriszyp/msgpackr/releases) - [Commits](https://github.com/kriszyp/msgpackr/commits) Updates `path-to-regexp` from 0.1.7 to 0.1.10 - [Release notes](https://github.com/pillarjs/path-to-regexp/releases) - [Changelog](https://github.com/pillarjs/path-to-regexp/blob/master/History.md) - [Commits](https://github.com/pillarjs/path-to-regexp/compare/v0.1.7...v0.1.10) --- updated-dependencies: - dependency-name: express dependency-type: direct:production dependency-group: npm_and_yarn - dependency-name: fabric-network dependency-type: direct:production dependency-group: npm_and_yarn - dependency-name: "@babel/traverse" dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: "@grpc/grpc-js" dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: axios dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: braces dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: elliptic dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: follow-redirects dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: jsrsasign dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: msgpackr dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: path-to-regexp dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
70 lines
2.2 KiB
JSON
70 lines
2.2 KiB
JSON
{
|
|
"name": "asset-transfer-basic",
|
|
"version": "1.0.0",
|
|
"description": "Asset Transfer Basic REST API implemented in TypeScript",
|
|
"main": "dist/index.js",
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"dependencies": {
|
|
"bullmq": "^1.47.2",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^10.0.0",
|
|
"env-var": "^7.0.1",
|
|
"express": "^4.20.0",
|
|
"express-validator": "^6.12.0",
|
|
"fabric-network": "^2.2.20",
|
|
"helmet": "^4.6.0",
|
|
"http-status-codes": "^2.1.4",
|
|
"ioredis": "^4.27.8",
|
|
"long": "^5.2.3",
|
|
"passport": "^0.6.0",
|
|
"passport-headerapikey": "^1.2.2",
|
|
"pino": "^6.11.3",
|
|
"pino-http": "^5.5.0",
|
|
"source-map-support": "^0.5.19"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node12": "^12.1.0",
|
|
"@types/cors": "^2.8.12",
|
|
"@types/express": "^4.17.12",
|
|
"@types/ioredis": "^4.26.4",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^12.20.55",
|
|
"@types/passport": "^1.0.7",
|
|
"@types/pino": "^6.3.8",
|
|
"@types/pino-http": "^5.4.1",
|
|
"@types/supertest": "^2.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
"@typescript-eslint/parser": "^6.7.0",
|
|
"eslint": "^8.49.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"ioredis-mock": "^5.6.0",
|
|
"jest": "^29.7.0",
|
|
"jest-mock-extended": "^3.0.5",
|
|
"pino-pretty": "^5.0.2",
|
|
"prettier": "^2.3.1",
|
|
"rimraf": "^3.0.2",
|
|
"supertest": "^6.1.4",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.1.0",
|
|
"typescript": "~5.2.0"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "npm run lint",
|
|
"build": "tsc",
|
|
"clean": "rimraf ./dist",
|
|
"format": "prettier --write \"{src,test}/**/*.ts\"",
|
|
"generateEnv": "./scripts/generateEnv.sh",
|
|
"lint": "eslint . --ext .ts",
|
|
"start": "node --require source-map-support/register ./dist",
|
|
"start:dotenv": "node --require source-map-support/register --require dotenv/config ./dist",
|
|
"start:dev": "node --require source-map-support/register --require dotenv/config ./dist | pino-pretty",
|
|
"start:redis": "docker run -p 6379:6379 --name fabric-sample-redis -d redis --maxmemory-policy noeviction --requirepass \"${REDIS_PASSWORD}\"",
|
|
"test": "jest"
|
|
},
|
|
"author": "Hyperledger",
|
|
"license": "Apache-2.0",
|
|
"private": true
|
|
}
|