diff --git a/README.md b/README.md index 3ad8418..f0bb504 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ At any point you want the program to stop, use Ctrl + C. ### Developer notes -The command `npm run dev` can be used instead of `npm run start` to automatically restart the project when filesystem changes are detected in the `src/` folder or `.env` file. +The command `npm run start:dev` can be used instead of `npm run start` to automatically restart the project when filesystem changes are detected in the `src/` folder or `.env` file. ### Customization diff --git a/package.json b/package.json index 0092996..401530f 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,10 @@ "main": "src/index.ts", "scripts": { "build": "rimraf ./build && tsc", - "dev": "nodemon --config nodemon.json", "lint": "xo", "lint:fix": "xo --fix", "start": "npm run build && node build/index.js", + "start:dev": "nodemon --config nodemon.json", "test:notification": "npm run build && node build/__test__/notification-test.js" }, "repository": {