diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ee2a64f..a3ca593 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,11 +1,11 @@ { - // See https://go.microsoft.com/fwlink/?LinkId=733558 + // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "type": "npm", - "script": "develop", + "script": "start", "group": { "kind": "build", "isDefault": true @@ -13,4 +13,4 @@ "problemMatcher": [] } ] -} \ No newline at end of file +} diff --git a/README.md b/README.md index 97c5aef..c74b1e8 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Install [Node.js](https://nodejs.org/) and run: ```console $ npm install -$ npm develop +$ npm start ``` The web server will be running at `http://localhost:8000` and the email server at `smtp://localhost:2525`. diff --git a/package.json b/package.json index 5360c38..2e15707 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "scripts": { - "test": "tsc && jest && prettier --check 'src/**'", - "develop": "concurrently \"tsc --watch\" \"nodemon lib\"" + "start": "concurrently \"tsc --watch\" \"nodemon lib\"", + "test": "tsc && jest && prettier --check 'src/**'" }, "dependencies": { "crypto-random-string": "^3.2.0",