jQuery.parseJSON()とJSON.parse()は両方ともJSON文字列をparseするが、やってることが同じならばどっちを使うべきか?
As of jQuery 3.0, $.parseJSON is deprecated. To parse JSON strings use the native JSON.parse method instead.
jQuery 3.0 以降、$.parseJSON は非推奨となりました。JSON 文字列をパースするには、代わりにネイティブの JSON.parse メソッドを使用します。
っと、公式サイト
https://api.jquery.com/jQuery.parseJSON/#jQuery-parseJSON-json-json
に書いてあった。
JSON.parse() を使えばいいってことが判明した。