Advertisement
Guest User

Untitled

a guest
Oct 18th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. env:
  2. browser: true
  3. es6: true
  4. extends:
  5. - airbnb
  6. - "eslint:recommended"
  7. - "plugin:react/recommended"
  8. globals:
  9. Atomics: readonly
  10. SharedArrayBuffer: readonly
  11. parserOptions:
  12. ecmaFeatures:
  13. jsx: true
  14. ecmaVersion: 2018
  15. sourceType: module
  16. plugins:
  17. - react
  18. rules:
  19. import/extensions: 0
  20. react/prop-types: 0
  21.  
  22.  
  23.  
  24.  
  25.  
  26. {
  27. "name": "weather-app",
  28. "version": "0.1.0",
  29. "private": true,
  30. "dependencies": {
  31. "@testing-library/jest-dom": "^4.2.4",
  32. "@testing-library/react": "^9.5.0",
  33. "@testing-library/user-event": "^7.2.1",
  34. "axios": "^0.20.0",
  35. "bootstrap": "^4.5.3",
  36. "bootswatch": "^4.5.2",
  37. "lodash": "^4.17.20",
  38. "react": "^16.13.1",
  39. "react-bootstrap": "^1.3.0",
  40. "react-dom": "^16.13.1",
  41. "react-scripts": "3.4.3"
  42. },
  43. "scripts": {
  44. "start": "react-scripts start",
  45. "build": "react-scripts build",
  46. "test": "react-scripts test",
  47. "eject": "react-scripts eject"
  48. },
  49. "eslintConfig": {
  50. "extends": "react-app"
  51. },
  52. "browserslist": {
  53. "production": [
  54. ">0.2%",
  55. "not dead",
  56. "not op_mini all"
  57. ],
  58. "development": [
  59. "last 1 chrome version",
  60. "last 1 firefox version",
  61. "last 1 safari version"
  62. ]
  63. },
  64. "devDependencies": {
  65. "eslint": "^6.8.0",
  66. "eslint-config-airbnb": "^18.2.0",
  67. "eslint-plugin-babel": "^5.3.1",
  68. "eslint-plugin-import": "^2.22.1",
  69. "eslint-plugin-jsx-a11y": "^6.3.1",
  70. "eslint-plugin-prettier": "^3.1.4",
  71. "eslint-plugin-react": "^7.21.4",
  72. "eslint-plugin-react-hooks": "^4.1.2"
  73. }
  74. }
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement