package.json 758 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "app",
  3. "version": "2.0.0",
  4. "description": "web server node",
  5. "license": "MIT",
  6. "private": true,
  7. "scripts": {
  8. "exec": "npx nodemon --exec npx babel-node ./src/app.js",
  9. "web-build": "webpack --config webpack.conf.js",
  10. "build": "babel src -d build --source-maps",
  11. "watch": "babel src -d build --source-maps --watch"
  12. },
  13. "author": "Eliseu Lucena Barros",
  14. "dependencies": {
  15. "body-parser": "^1.17.2",
  16. "consign": "^0.1.4",
  17. "express": "^4.15.3",
  18. "express-cluster": "0.0.4",
  19. "helmet": "^3.6.1",
  20. "mysql": "github:mysqljs/mysql",
  21. "path": "^0.12.7"
  22. },
  23. "devDependencies": {
  24. "babel-cli": "^6.26.0",
  25. "babel-core": "^6.26.3",
  26. "babel-preset-env": "^1.7.0",
  27. "nodemon": "^1.18.3"
  28. }
  29. }