mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Bumps [qs](https://github.com/ljharb/qs) to 6.11.0 and updates ancestor dependencies [qs](https://github.com/ljharb/qs), [qs](https://github.com/ljharb/qs) and [express](https://github.com/expressjs/express). These dependencies need to be updated together. Updates `qs` from 6.10.2 to 6.11.0 - [Release notes](https://github.com/ljharb/qs/releases) - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](https://github.com/ljharb/qs/compare/v6.10.2...v6.11.0) Updates `qs` from 6.10.1 to 6.11.0 - [Release notes](https://github.com/ljharb/qs/releases) - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](https://github.com/ljharb/qs/compare/v6.10.2...v6.11.0) Updates `express` from 4.17.1 to 4.18.2 - [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.17.1...4.18.2) --- updated-dependencies: - dependency-name: qs dependency-type: indirect - dependency-name: qs dependency-type: indirect - dependency-name: express dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
69 lines
No EOL
2.2 KiB
JSON
69 lines
No EOL
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",
|
|
"npm": ">=5"
|
|
},
|
|
"dependencies": {
|
|
"bullmq": "^1.47.2",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^10.0.0",
|
|
"env-var": "^7.0.1",
|
|
"express": "^4.18.2",
|
|
"express-validator": "^6.12.0",
|
|
"fabric-network": "^2.2.10",
|
|
"helmet": "^4.6.0",
|
|
"http-status-codes": "^2.1.4",
|
|
"ioredis": "^4.27.8",
|
|
"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": {
|
|
"@types/cors": "^2.8.12",
|
|
"@types/express": "^4.17.12",
|
|
"@types/ioredis": "^4.26.4",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^15.14.7",
|
|
"@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": "^4.28.0",
|
|
"@typescript-eslint/parser": "^4.28.0",
|
|
"eslint": "^7.29.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"ioredis-mock": "^5.6.0",
|
|
"jest": "^27.5.1",
|
|
"jest-mock-extended": "^2.0.2-beta2",
|
|
"pino-pretty": "^5.0.2",
|
|
"prettier": "^2.3.1",
|
|
"rimraf": "^3.0.2",
|
|
"supertest": "^6.1.4",
|
|
"ts-jest": "^27.1.4",
|
|
"ts-node": "^10.1.0",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"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
|
|
} |