Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. {
  2. "name": "my-test-app",
  3. "description": "a really cool app",
  4. "version": "1.0.0",
  5. "engines": {
  6. "node": "10.10.0"
  7. },
  8. "private": true,
  9. "scripts": {
  10. "client-install": "npm install --prefix client",
  11. "start": "node ./bin/www.js",
  12. "client": "npm start --prefix client",
  13. "dev": "concurrently \"npm run start \" \"npm run client\"",
  14. "heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
  15. },
  16. "author": "Pavel Pytliuk",
  17. "license": "MIT",
  18. "dependencies": {
  19. "bcryptjs": "latest",
  20. "busboy": "^0.2.14",
  21. "concurrently": "^4.0.1",
  22. "cookie-parser": "~1.4.3",
  23. "debug": "~2.6.9",
  24. "ejs": "~2.5.7",
  25. "express": "4.16.4",
  26. "http-errors": "~1.6.2",
  27. "jsonwebtoken": "latest",
  28. "mongoose": "latest",
  29. "morgan": "~1.9.0",
  30. "passport": "^0.4.0",
  31. "passport-jwt": "latest",
  32. "validator": "latest"
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement