Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. {
  2. "restartable": "rs",
  3. "ignore": [
  4. ".git",
  5. "node_modules/**/node_modules"
  6. ],
  7. "verbose": true,
  8. "events": {
  9. "restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
  10. },
  11. "watch": [
  12. "./*.js",
  13. "server",
  14. "public",
  15. "test"
  16. ],
  17. "env": {
  18. "NODE_ENV": [
  19. "development",
  20. "test"
  21. ]
  22. },
  23. "ext": "js json"
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement