22 lines
561 B
JSON
22 lines
561 B
JSON
{
|
|
"name": "Nx Express",
|
|
"version": "0.1",
|
|
"extends": ["@nrwl/workspace"],
|
|
"schematics": {
|
|
"init": {
|
|
"factory": "./src/schematics/init/init",
|
|
"schema": "./src/schematics/init/schema.json",
|
|
"description": "Initialize the @nrwl/express plugin",
|
|
"alias": ["ng-add"],
|
|
"hidden": true
|
|
},
|
|
|
|
"application": {
|
|
"factory": "./src/schematics/application/application",
|
|
"schema": "./src/schematics/application/schema.json",
|
|
"aliases": ["app"],
|
|
"description": "Create an express application"
|
|
}
|
|
}
|
|
}
|