64 lines
2.2 KiB
JSON
64 lines
2.2 KiB
JSON
{
|
|
"name": "nx/node",
|
|
"version": "0.1",
|
|
"extends": ["@nrwl/workspace"],
|
|
"generators": {
|
|
"init": {
|
|
"factory": "./src/generators/init/init",
|
|
"schema": "./src/generators/init/schema.json",
|
|
"description": "Initialize the @nrwl/node plugin",
|
|
"aliases": ["ng-add"],
|
|
"hidden": true
|
|
},
|
|
"application": {
|
|
"factory": "./src/generators/application/application",
|
|
"schema": "./src/generators/application/schema.json",
|
|
"aliases": ["app"],
|
|
"x-type": "application",
|
|
"description": "Create a node application"
|
|
},
|
|
"library": {
|
|
"factory": "./src/generators/library/library",
|
|
"schema": "./src/generators/library/schema.json",
|
|
"aliases": ["lib"],
|
|
"x-type": "library",
|
|
"description": "Create a library"
|
|
},
|
|
"migrate-to-webpack-5": {
|
|
"factory": "./src/generators/migrate-to-webpack-5/migrate-to-webpack-5#nodeMigrateToWebpack5Generator",
|
|
"schema": "./src/generators/migrate-to-webpack-5/schema.json",
|
|
"aliases": ["webpack5"],
|
|
"description": "Add webpack 5 compatible dependencies to the workspace"
|
|
}
|
|
},
|
|
"schematics": {
|
|
"init": {
|
|
"factory": "./src/generators/init/init#initSchematic",
|
|
"schema": "./src/generators/init/schema.json",
|
|
"description": "Initialize the @nrwl/node plugin",
|
|
"aliases": ["ng-add"],
|
|
"hidden": true
|
|
},
|
|
"application": {
|
|
"factory": "./src/generators/application/application#applicationSchematic",
|
|
"schema": "./src/generators/application/schema.json",
|
|
"aliases": ["app"],
|
|
"x-type": "application",
|
|
"description": "Create a node application"
|
|
},
|
|
"library": {
|
|
"factory": "./src/generators/library/library#librarySchematic",
|
|
"schema": "./src/generators/library/schema.json",
|
|
"aliases": ["lib"],
|
|
"x-type": "library",
|
|
"description": "Create a library"
|
|
},
|
|
"migrate-to-webpack-5": {
|
|
"factory": "./src/generators/migrate-to-webpack-5/migrate-to-webpack-5#nodeMigrateToWebpack5Schematic",
|
|
"schema": "./src/generators/migrate-to-webpack-5/schema.json",
|
|
"aliases": ["webpack5"],
|
|
"description": "Add webpack 5 compatible dependencies to the workspace"
|
|
}
|
|
}
|
|
}
|