package.json 751 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "react-tutorial",
  3. "version": "0.0.0",
  4. "description": "Code from the React tutorial.",
  5. "main": "server.js",
  6. "dependencies": {
  7. "body-parser": "^1.4.3",
  8. "express": "^4.4.5"
  9. },
  10. "devDependencies": {},
  11. "scripts": {
  12. "test": "echo \"Error: no test specified\" && exit 1",
  13. "start": "node server.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/reactjs/react-tutorial.git"
  18. },
  19. "keywords": [
  20. "react",
  21. "tutorial",
  22. "comment",
  23. "example"
  24. ],
  25. "author": "petehunt",
  26. "license": "proprietary",
  27. "bugs": {
  28. "url": "https://github.com/reactjs/react-tutorial/issues"
  29. },
  30. "homepage": "https://github.com/reactjs/react-tutorial",
  31. "engines" : {
  32. "node" : "0.12.x"
  33. }
  34. }