Should I have a separate dependencies and devdependencies section in my package.json file?
this is my current file
{
"name": "accountabilitybunnies",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build --remote",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/db": "^0.11.5",
"@astrojs/netlify": "^5.3.0",
"astro": "^4.10.2",
"sharp": "^0.33.4",
"typescript": "^5.4.2"
}
}