My JSON file is being modified by using JSON.stringify and JSON.parse based on updates from an online database. While everything is functioning correctly, there is an issue where numbers are being converted to strings with quotes in the JSON file. For instance, instead of "id": 1
, it shows as "id": "1"
. How can I remove these unnecessary quotes without resorting to alternatives and continue using JSON.stringify?