fix for windows npm

This commit is contained in:
Lachlan Kermode
2020-06-17 18:03:56 +02:00
parent a620b17090
commit 83e6897b75

View File

@@ -4,8 +4,8 @@
"description": "Starter project for an ES6 RESTful Express API",
"main": "dist",
"scripts": {
"dev": "NODE_ENV=development nodemon -w src --exec \"babel-node src\"",
"build": "NODE_ENV=production npx babel src -d dist",
"dev": "env NODE_ENV=development nodemon -w src --exec \"babel-node src\"",
"build": "env NODE_ENV=production npx babel src -d dist",
"start": "node dist",
"lint": "standard \"src/**/*.js\" \"test/**/*.js\"",
"test-watch": "ava --watch",