1{
2 "name": "abc",
3 "version": "0.0.1",
4 "description": "my server",
5 "scripts": {
6 "start": "nodemon my_file.js" // <=
1 "scripts": {
2 "start": "node ./bin/www",
3 "devstart": "nodemon ./bin/www",
4 "serverstart": "DEBUG=express-locallibrary-tutorial:* npm run devstart"
5 },
6