package.json 817 B

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