| CORS | A CORS-safelisted response header is an HTTP header which has been safelisted so that it will not be filtered when responses are processed by CORS, since they're considered safe (as the headers listed in Access-Control-Expose-Headers). By default, the safelist includes the following response headers: |
| CORS Proxy | https://cors-anywhere.herokuapp.com/ |
| regeneratorRuntime | https://github.com/browserslist/browserslist |
{% code title="package.json" %}
{
"name": "dogrecipes",
"version": "1.0.0",
"description": "",
"main": "scripts.js",
"scripts": {
"start": "parcel index.html"
},
"author": "",
"license": "ISC",
"dependencies": {
"parcel-bundler": "^1.12.4"
},
"browserslist": [
"last 1 chrome versions"
]
}{% endcode %}