How to set some environment variables from within package.json to be used with npm start like commands?
This is what I presently have in my package.json:
{
...
"scripts": {
"help": "tagove help",
"start": "tagove start"
}
...
I need to set environment variables (like NODE_ENV) in the beginning script while as yet having the option to begin the application with only one order, npm start.