write own nodemon in package json

Solutions on MaxInterview for write own nodemon in package json by the best coders in the world

showing results for - "write own nodemon in package json"
Alexa
10 Oct 2017
1{
2  "name": "abc",
3  "version": "0.0.1",
4  "description": "my server",
5  "scripts": {
6    "start": "nodemon my_file.js"
7  },
8  "devDependencies": {
9    "nodemon": "~1.3.8",
10  },
11  "dependencies": {
12
13  }
14}
15