package.json 942 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "common-ui-components",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "prop-types": "^15.5.10",
  7. "react": "^15.6.1",
  8. "react-dom": "^15.6.1",
  9. "react-flip-move": "2.9.14",
  10. "react-motion": "^0.5.0",
  11. "react-redux": "^5.0.5",
  12. "react-router-dom": "4.1.1",
  13. "redux": "^3.7.0"
  14. },
  15. "devDependencies": {
  16. "enzyme": "^2.8.2",
  17. "eslint": "^3.19.0",
  18. "eslint-config-airbnb": "^15.0.1",
  19. "eslint-config-google": "^0.8.0",
  20. "eslint-plugin-import": "^2.3.0",
  21. "eslint-plugin-jsx-a11y": "^5.0.3",
  22. "eslint-plugin-react": "^7.1.0",
  23. "react-scripts": "1.0.7"
  24. },
  25. "scripts": {
  26. "start": "react-scripts start",
  27. "build": "react-scripts build",
  28. "precommit": "lint-staged",
  29. "test": "react-scripts test --env=jsdom",
  30. "eject": "react-scripts eject"
  31. },
  32. "lint-staged": {
  33. "*.js": [
  34. "prettier --single-quote --es5 --write",
  35. "git add"
  36. ]
  37. }
  38. }