Skip to content

Commit

Permalink
Merge pull request #2072 from gabormagyar/patch-1
Browse files Browse the repository at this point in the history
chore(manifest): add optional peerDependencies
  • Loading branch information
BrunnerLivio authored Nov 17, 2022
2 parents 1d4ff73 + 508dd4d commit adfd8bc
Showing 1 changed file with 51 additions and 1 deletion.
52 changes: 51 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,56 @@
"@nestjs/common": "9.x",
"@nestjs/core": "9.x",
"reflect-metadata": "0.1.x",
"rxjs": "7.x"
"rxjs": "7.x",
"@nestjs/microservices": "*",
"@grpc/grpc-js": "*",
"@grpc/proto-loader": "*",
"@nestjs/axios": "*",
"@mikro-orm/nestjs": "*",
"@mikro-orm/core": "*",
"@nestjs/mongoose": "*",
"@nestjs/sequelize": "*",
"@nestjs/typeorm": "*",
"mongoose": "*",
"sequelize": "*",
"typeorm": "*"
},
"peerDependenciesMeta": {
"@nestjs/microservices": {
"optional": true
},
"@grpc/grpc-js": {
"optional": true
},
"@grpc/proto-loader": {
"optional": true
},
"@nestjs/axios": {
"optional": true
},
"@mikro-orm/nestjs": {
"optional": true
},
"@mikro-orm/core": {
"optional": true
},
"@nestjs/mongoose": {
"optional": true
},
"@nestjs/sequelize": {
"optional": true
},
"@nestjs/typeorm": {
"optional": true
},
"mongoose": {
"optional": true
},
"sequelize": {
"optional": true
},
"typeorm": {
"optional": true
}
}
}

0 comments on commit adfd8bc

Please sign in to comment.