package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "create-react-app",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "@testing-library/jest-dom": "4.2.4",
  7. "@testing-library/react": "9.4.0",
  8. "@testing-library/user-event": "7.2.1",
  9. "react": "16.12.0",
  10. "react-dom": "16.12.0",
  11. "react-scripts": "3.3.0"
  12. },
  13. "scripts": {
  14. "start": "craco start",
  15. "build": "craco build",
  16. "test": "craco test",
  17. "tauri:prod": "tauri",
  18. "tauri:source": "node ../../../cli/tauri.js/bin/tauri",
  19. "tauri:source:init": "yarn tauri:source init --tauriPath ../../../tauri",
  20. "tauri:prod:init": "yarn tauri:prod init",
  21. "tauri:source:dev": "yarn tauri:source dev",
  22. "tauri:prod:dev": "yarn tauri:prod dev",
  23. "tauri:source:build": "yarn tauri:source build",
  24. "tauri:prod:build": "yarn tauri:prod build"
  25. },
  26. "eslintConfig": {
  27. "extends": "react-app"
  28. },
  29. "browserslist": {
  30. "production": [
  31. ">0.2%",
  32. "not dead",
  33. "not op_mini all"
  34. ],
  35. "development": [
  36. "last 1 chrome version",
  37. "last 1 firefox version",
  38. "last 1 safari version"
  39. ]
  40. },
  41. "devDependencies": {
  42. "@craco/craco": "5.6.2"
  43. }
  44. }