{
  "name": "rslib-module",
  "$schema": "../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "packages/rslib-module/src",
  "projectType": "library",
  "tags": ["type:app"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "options": {
        "commands": ["npm run build --prefix apps/rslib-module"]
      }
    },
    "serve": {
      "executor": "nx:run-commands",
      "options": {
        "commands": ["npm run serve --prefix apps/rslib-module"]
      },
      "dependsOn": [
        {
          "target": "build",
          "dependencies": true
        }
      ]
    },
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "commands": ["npm run dev --prefix apps/rslib-module"]
      },
      "dependsOn": [
        {
          "target": "build",
          "dependencies": true
        }
      ]
    },
    "storybook": {
      "executor": "nx:run-commands",
      "options": {
        "commands": ["npm run storybook --prefix apps/rslib-module"]
      }
    }
  }
}
