This preprocess function works if it helps others:
YOURTHEME.theme:
function YOURTHEME_preprocess_paragraph(&$variables){
$node = \Drupal::request()->attributes->get('node');
$variables['content_type'] = $node->getType();
}
paragraph.html.twig:
{{ content_type }}
Inspired by https://createdbycocoon.com/knowledge/get-node-values-paragraph-templates-twig-drupal-8