diff --git a/packages/api/package.json b/packages/api/package.json index 97c1fd7..04eb941 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -6,8 +6,8 @@ "scripts": { "build": "tsc", "watch": "npm run build -- --watch", - "start:dev": "nodemon dist/src/index.js", - "start:dev:inspect": "nodemon --inspect dist/src/index.js", + "start": "nodemon dist/src/index.js", + "start:inspect": "nodemon --inspect dist/src/index.js", "test": "jest" }, "author": "", diff --git a/packages/client/package.json b/packages/client/package.json index 3e1fed0..218eef5 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "build": "webpack --config webpack.prod.js", - "start:dev": "webpack server --config webpack.dev.js", + "start": "webpack server --config webpack.dev.js", "test": "jest", "analyze-bundle": "webpack --config webpack.prod.js --profile --json > bundle-stats.json; webpack-bundle-analyzer bundle-stats.json dist/" },