in general you can do ls() to get a list of all object names in the environment.
you can make a dataframe with the classes against the names like this
purrr::map_dfr(ls(envir=.GlobalEnv),~tibble(object_name = .,object_class=class(get(.))[[1]]))
Shiny is more complex because of its reactive objects