Pacotes faltando no servidor brilhante

Eu estou tentando criar um aplicativo da web usando brilhante. Isso requer que eu carregue um pacote que instalei no meu computador. Por exemplo:

## Contents ui.R:
library(shiny)
library(plyr)

shinyUI(pageWithSidebar(

  headerPanel("Hello Shiny!"),

  sidebarPanel(
    sliderInput("obs", 
                "Number of observations:", 
                min = 0, 
                max = 1000, 
                value = 500)
  ),

  mainPanel(
    plotOutput("distPlot")
  )
))

## Contents server.R:
library(shiny)
library(plyr)

shinyServer(function(input, output) {

  output$distPlot <- renderPlot({

    # generate an rnorm distribution and plot it
    dist <- rnorm(input$obs)
    hist(dist)
  })
})

Isso funciona bem se eu executá-lo localmente (usandorunApp) mas quando eu tento executá-lo através do meu servidor (mesmo computador) eu recebo o erro que oplyr pacote (ou qualquer outro pacote que eu tente usar desta forma) não está instalado. Como eu poderia usar pacotes extras no servidor brilhante?

questionAnswers(5)

yourAnswerToTheQuestion