{
  "$schema": "http://json-schema.org/schema",
  "cli": "nx",
  "$id": "redux",
  "title": "Create Redux state",
  "description": "Create a Redux state slice for a React project.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Redux slice name.",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    },
    "project": {
      "type": "string",
      "description": "The name of the project to add the slice to. If it is an application, then the store configuration will be updated too.",
      "alias": "p",
      "$default": {
        "$source": "projectName"
      },
      "x-prompt": "What is the name of the project for this slice?"
    },
    "directory": {
      "type": "string",
      "alias": "dir",
      "default": "",
      "description": "The name of the folder used to contain/group the generated Redux files."
    },
    "appProject": {
      "type": "string",
      "description": "The application project to add the slice to.",
      "alias": "a"
    },
    "js": {
      "type": "boolean",
      "description": "Generate JavaScript files rather than TypeScript files.",
      "default": false
    }
  },
  "required": ["name"]
}
