aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/app/templates/package.json.tt
blob: 7174116989504ade09f0daed1128a26b022809e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{
  "name": "<%= app_name %>",
  "private": true,
  "dependencies": {
    "rails-ujs": ">=5.2.1"<% unless options[:skip_turbolinks] %>,
    "turbolinks": "5.1.1"<% end -%><% unless skip_active_storage? %>,
    "activestorage": ">=5.2.1"<% end -%><% unless options[:skip_action_cable] %>,
    "actioncable": ">=5.2.1"<% end %>
  },
  "version": "0.1.0"
}