28 lines
676 B
JSON
28 lines
676 B
JSON
{
|
|
"$schema": "https://json-schema.org/schema",
|
|
"$id": "NxReactNgInit",
|
|
"title": "Init React Plugin",
|
|
"description": "Initialize a React Plugin.",
|
|
"cli": "nx",
|
|
"type": "object",
|
|
"properties": {
|
|
"skipFormat": {
|
|
"description": "Skip formatting files.",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"skipPackageJson": {
|
|
"description": "Do not add dependencies to `package.json`.",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"keepExistingVersions": {
|
|
"type": "boolean",
|
|
"x-priority": "internal",
|
|
"description": "Keep existing dependencies versions",
|
|
"default": false
|
|
}
|
|
},
|
|
"required": []
|
|
}
|