package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "browserslist": {
  3. "development": [
  4. "last 1 chrome version",
  5. "last 1 firefox version",
  6. "last 1 safari version"
  7. ],
  8. "production": [
  9. ">0.2%",
  10. "not dead",
  11. "not op_mini all"
  12. ]
  13. },
  14. "dependencies": {
  15. "@testing-library/jest-dom": "^5.16.5",
  16. "@testing-library/react": "^13.4.0",
  17. "@testing-library/user-event": "^13.5.0",
  18. "react": "^18.2.0",
  19. "react-dom": "^18.2.0",
  20. "react-scripts": "5.0.1",
  21. "web-vitals": "^2.1.4"
  22. },
  23. "devDependencies": {
  24. "@storybook/addon-actions": "^6.5.15",
  25. "@storybook/addon-essentials": "^6.5.15",
  26. "@storybook/addon-interactions": "^6.5.15",
  27. "@storybook/addon-links": "^6.5.15",
  28. "@storybook/builder-webpack5": "^6.5.15",
  29. "@storybook/manager-webpack5": "^6.5.15",
  30. "@storybook/node-logger": "^6.5.15",
  31. "@storybook/preset-create-react-app": "^4.1.2",
  32. "@storybook/react": "^6.5.15",
  33. "@storybook/testing-library": "^0.0.13",
  34. "babel-plugin-named-exports-order": "^0.0.2",
  35. "concurrently": "^7.6.0",
  36. "prettier": "^2.8.4",
  37. "prop-types": "^15.8.1",
  38. "tailwindcss": "^3.2.4",
  39. "webpack": "^5.75.0"
  40. },
  41. "eslintConfig": {
  42. "extends": [
  43. "react-app",
  44. "react-app/jest"
  45. ],
  46. "overrides": [
  47. {
  48. "files": [
  49. "**/*.stories.*"
  50. ],
  51. "rules": {
  52. "import/no-anonymous-default-export": "off"
  53. }
  54. }
  55. ]
  56. },
  57. "name": "front",
  58. "private": true,
  59. "scripts": {
  60. "build": "react-scripts build",
  61. "eject": "react-scripts eject",
  62. "start": "react-scripts start",
  63. "test": "react-scripts test",
  64. "storybook": "start-storybook -p 6006 -s public",
  65. "build-storybook": "build-storybook -s public",
  66. "//": "New scripts to run and build Storybook with Tailwind",
  67. "storybook": "concurrently \"yarn:watch:*\"",
  68. "build-storybook": "concurrently \"yarn:build:*\"",
  69. "build:css": "npx tailwindcss -i ./src/tailwind.css -o ./public/tailwind.css",
  70. "build:storybook": "npx start-storybook build",
  71. "watch:css": "npx tailwindcss -i ./src/tailwind.css -o ./public/tailwind.css --watch",
  72. "watch:storybook": "npx npx start-storybook dev -p 6006"
  73. },
  74. "version": "0.1.0"
  75. }