Skip to content

Commit

Permalink
Added cross-env as dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
pstrassmann committed Oct 8, 2020
1 parent 9905288 commit 49cfd2c
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 5 deletions.
62 changes: 59 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"server": "nodemon server.js",
"start": "cross-env NODE-ENV=production node server.js",
"server": "cross-env NODE_ENV=development nodemon server.js",
"msandbox": "node scripts/mongooseSandbox.js",
"populate": "node scripts/masterPopulate.js",
"client": "npm run start --prefix client",
Expand All @@ -24,6 +24,7 @@
},
"devDependencies": {
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
},
Expand Down

0 comments on commit 49cfd2c

Please sign in to comment.