27 lines
751 B
JSON
27 lines
751 B
JSON
{
|
|
"name": "nx/node",
|
|
"version": "0.1",
|
|
"extends": ["@nrwl/workspace"],
|
|
"schematics": {
|
|
"init": {
|
|
"factory": "./src/schematics/init/init",
|
|
"schema": "./src/schematics/init/schema.json",
|
|
"description": "Initialize the @nrwl/node plugin",
|
|
"aliases": ["ng-add"],
|
|
"hidden": true
|
|
},
|
|
"application": {
|
|
"factory": "./src/schematics/application/application",
|
|
"schema": "./src/schematics/application/schema.json",
|
|
"aliases": ["app"],
|
|
"description": "Create a node application"
|
|
},
|
|
"library": {
|
|
"factory": "./src/schematics/library/library",
|
|
"schema": "./src/schematics/library/schema.json",
|
|
"aliases": ["lib"],
|
|
"description": "Create a library"
|
|
}
|
|
}
|
|
}
|