97 lines
4.2 KiB
JSON
97 lines
4.2 KiB
JSON
{
|
|
"name": "nx/nest",
|
|
"version": "0.1",
|
|
"extends": ["@nrwl/workspace"],
|
|
"schematics": {
|
|
"init": {
|
|
"factory": "./src/schematics/init/init",
|
|
"schema": "./src/schematics/init/schema.json",
|
|
"description": "Initialize the @nrwl/nest plugin",
|
|
"aliases": ["ng-add"],
|
|
"hidden": true
|
|
},
|
|
"application": {
|
|
"factory": "./src/schematics/application/application",
|
|
"schema": "./src/schematics/application/schema.json",
|
|
"aliases": ["app"],
|
|
"description": "Create a nest application"
|
|
},
|
|
"library": {
|
|
"factory": "./src/schematics/library/library",
|
|
"schema": "./src/schematics/library/schema.json",
|
|
"aliases": ["lib"],
|
|
"description": "Create a new nest library"
|
|
},
|
|
"class": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#classSchematic",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'class' NestJs generator with Nx project support"
|
|
},
|
|
"controller": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#controller",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'controller' NestJs generator with Nx project support"
|
|
},
|
|
"decorator": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#decorator",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'decorator' NestJs generator with Nx project support"
|
|
},
|
|
"filter": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#filter",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'filter' NestJs generator with Nx project support"
|
|
},
|
|
"gateway": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#gateway",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'gateway' NestJs generator with Nx project support"
|
|
},
|
|
"guard": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#guard",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'guard' NestJs generator with Nx project support"
|
|
},
|
|
"interceptor": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#interceptor",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'interceptor' NestJs generator with Nx project support"
|
|
},
|
|
"interface": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#interfaceSchematic",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'interface' NestJs generator with Nx project support"
|
|
},
|
|
"middleware": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#middleware",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'middleware' NestJs generator with Nx project support"
|
|
},
|
|
"module": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#module",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'module' NestJs generator with Nx project support"
|
|
},
|
|
"pipe": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#pipe",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'pipe' NestJs generator with Nx project support"
|
|
},
|
|
"provider": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#provider",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'provider' NestJs generator with Nx project support"
|
|
},
|
|
"resolver": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#resolver",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'resolver' NestJs generator with Nx project support"
|
|
},
|
|
"service": {
|
|
"factory": "./src/schematics/nestjs-schematics/nestjs-schematics#service",
|
|
"schema": "./src/schematics/nestjs-schematics/schema.json",
|
|
"description": "Run the 'service' NestJs generator with Nx project support"
|
|
}
|
|
}
|
|
}
|