HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-172-31-4-197 6.8.0-1036-aws #38~22.04.1-Ubuntu SMP Fri Aug 22 15:44:33 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/web.enelar.com.co/node_modules/nx/schemas/project-schema.json
{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "https://nx.dev/reference/project-configuration",
  "title": "JSON schema for Nx projects",
  "type": "object",
  "properties": {
    "namedInputs": {
      "type": "object",
      "description": "Named inputs used by inputs defined in targets",
      "additionalProperties": {
        "$ref": "#/definitions/inputs"
      }
    },
    "targets": {
      "type": "object",
      "description": "Configures all the targets which define what tasks you can run against the project",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "executor": {
            "description": "The function that Nx will invoke when you run this target",
            "type": "string"
          },
          "options": {
            "type": "object"
          },
          "outputs": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "defaultConfiguration": {
            "type": "string",
            "description": "The name of a configuration to use as the default if a configuration is not provided"
          },
          "configurations": {
            "type": "object",
            "description": "provides extra sets of values that will be merged into the options map",
            "additionalProperties": {
              "type": "object"
            }
          },
          "inputs": {
            "$ref": "#/definitions/inputs"
          },
          "dependsOn": {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "type": "object",
                  "properties": {
                    "projects": {
                      "oneOf": [
                        {
                          "type": "string",
                          "description": "A project name"
                        },
                        {
                          "type": "array",
                          "description": "An array of project names",
                          "items": {
                            "type": "string"
                          }
                        }
                      ]
                    },
                    "dependencies": {
                      "type": "boolean"
                    },
                    "target": {
                      "type": "string",
                      "description": "The name of the target."
                    },
                    "params": {
                      "type": "string",
                      "description": "Configuration for params handling.",
                      "enum": ["ignore", "forward"],
                      "default": "ignore"
                    }
                  },
                  "oneOf": [
                    {
                      "required": ["projects", "target"]
                    },
                    {
                      "required": ["dependencies", "target"]
                    },
                    {
                      "required": ["target"],
                      "not": {
                        "anyOf": [
                          { "required": ["projects"] },
                          { "required": ["dependencies"] }
                        ]
                      }
                    }
                  ],
                  "additionalProperties": false
                }
              ]
            }
          },
          "command": {
            "type": "string",
            "description": "A shorthand for using the nx:run-commands executor"
          },
          "cache": {
            "type": "boolean",
            "description": "Specifies if the given target should be cacheable"
          }
        }
      }
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "implicitDependencies": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "definitions": {
    "inputs": {
      "type": "array",
      "items": {
        "oneOf": [
          {
            "type": "string"
          },
          {
            "type": "object",
            "properties": {
              "fileset": {
                "type": "string",
                "description": "A glob used to determine a fileset."
              }
            },
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "projects": {
                "oneOf": [
                  {
                    "type": "string",
                    "description": "The project that the targets belong to."
                  },
                  {
                    "type": "array",
                    "description": "The projects that the targets belong to.",
                    "items": { "type": "string" }
                  }
                ]
              },
              "dependencies": {
                "type": "boolean",
                "description": "Include files belonging to the input for all the project dependencies of this target."
              },
              "input": {
                "type": "string",
                "description": "The name of the input."
              }
            },
            "oneOf": [
              {
                "required": ["projects", "input"]
              },
              {
                "required": ["dependencies", "input"]
              },
              {
                "required": ["input"],
                "not": {
                  "anyOf": [
                    { "required": ["projects"] },
                    { "required": ["dependencies"] }
                  ]
                }
              }
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "runtime": {
                "type": "string",
                "description": "The command that will be executed and included into the hash."
              }
            },
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "env": {
                "type": "string",
                "description": "The env var that will be included into the hash."
              }
            },
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "externalDependencies": {
                "type": "array",
                "items": { "type": "string" },
                "description": "The list of external dependencies that our target depends on for `nx:run-commands` and community plugins."
              }
            },
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "dependentTasksOutputFiles": {
                "type": "string",
                "description": "The glob list of output files that project depends on."
              },
              "transitive": {
                "type": "boolean",
                "description": "Whether the check for outputs should be recursive or stop at the first level of dependencies."
              }
            },
            "required": ["dependentTasksOutputFiles"],
            "additionalProperties": false
          }
        ]
      }
    }
  }
}