package.json 585 B

123456789101112131415161718192021222324
  1. {
  2. "name": "node-js-mongo-db-2018-blog",
  3. "version": "1.0.0",
  4. "description": "Material do [Build NodeJS applications with Mongodb](https://www.udemy.com/node-js-mongo-db-2018)",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "start": "nodemon index.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://notabug.org/avena/node-js-mongo-db-2018-blog.git"
  13. },
  14. "keywords": [],
  15. "author": "",
  16. "license": "ISC",
  17. "dependencies": {
  18. "express": "^4.16.3"
  19. },
  20. "devDependencies": {
  21. "nodemon": "^1.19.0"
  22. }
  23. }