package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "recipemuse",
  3. "version": "0.0.1",
  4. "private": true,
  5. "scripts": {
  6. "android": "react-native run-android",
  7. "ios": "react-native run-ios",
  8. "start": "react-native start",
  9. "test": "jest",
  10. "lint:rules": "eslint . --cache",
  11. "lint:code-format": "prettier --check \"{src,__mocks__}/**/*.{js,json,md,ts,tsx,yml,yaml}\"",
  12. "lint:type-check": "tsc",
  13. "lint": "yarn lint:rules && yarn lint:code-format && yarn lint:type-check",
  14. "lint:fix": "yarn lint:rules --fix && yarn lint:code-format --write && yarn lint:type-check",
  15. "test:report": "jest --collectCoverage --coverageDirectory=\"./coverage\" --ci --reporters=default --reporters=jest-junit --coverage",
  16. "pod-install": "npx pod-install"
  17. },
  18. "dependencies": {
  19. "@invertase/react-native-apple-authentication": "^2.4.1",
  20. "@react-native-google-signin/google-signin": "^16.0.0",
  21. "@react-native-masked-view/masked-view": "^0.3.2",
  22. "@react-navigation/native": "^7.1.16",
  23. "@react-navigation/stack": "^7.4.4",
  24. "@tanstack/react-query": "^5.84.0",
  25. "i18next": "^25.3.2",
  26. "intl-pluralrules": "^2.0.1",
  27. "ky": "^1.8.2",
  28. "react": "19.1.0",
  29. "react-error-boundary": "^5.0.0",
  30. "react-i18next": "^15.6.1",
  31. "react-native": "0.80.2",
  32. "react-native-device-info": "^14.1.1",
  33. "react-native-gesture-handler": "^2.27.2",
  34. "react-native-mmkv": "^3.3.0",
  35. "react-native-reanimated": "^4.1.3",
  36. "react-native-safe-area-context": "^5.5.2",
  37. "react-native-screens": "4.13.1",
  38. "react-native-svg": "^15.12.1",
  39. "react-native-webview": "^13.16.0",
  40. "react-native-worklets": "^0.5.2",
  41. "zod": "^4.0.14"
  42. },
  43. "devDependencies": {
  44. "@babel/core": "^7.25.2",
  45. "@babel/plugin-transform-export-namespace-from": "^7.27.1",
  46. "@babel/preset-env": "^7.25.3",
  47. "@babel/runtime": "^7.26.10",
  48. "@eslint/js": "^9.23.0",
  49. "@react-native-community/cli": "19.1.1",
  50. "@react-native-community/cli-platform-android": "19.1.1",
  51. "@react-native-community/cli-platform-ios": "19.1.1",
  52. "@react-native/babel-preset": "0.80.2",
  53. "@react-native/eslint-config": "0.80.2",
  54. "@react-native/metro-config": "0.80.2",
  55. "@react-native/typescript-config": "0.80.2",
  56. "@testing-library/react-native": "^13.2.2",
  57. "@types/jest": "^29.5.13",
  58. "@types/node": "^22.13.17",
  59. "@types/react": "^19.1.0",
  60. "@types/react-test-renderer": "^19.1.0",
  61. "@typescript-eslint/parser": "^8.29.0",
  62. "babel-plugin-inline-dotenv": "^1.7.0",
  63. "babel-plugin-module-resolver": "^5.0.0",
  64. "babel-plugin-root-import": "^6.6.0",
  65. "dotenv": "^16.4.7",
  66. "eslint": "^9.32.0",
  67. "eslint-config-prettier": "^10.1.8",
  68. "eslint-import-resolver-typescript": "^4.4.4",
  69. "eslint-plugin-import": "^2.32.0",
  70. "eslint-plugin-jest": "^29.0.1",
  71. "eslint-plugin-perfectionist": "^4.15.0",
  72. "eslint-plugin-react": "^7.37.5",
  73. "eslint-plugin-react-hooks": "^5.2.0",
  74. "eslint-plugin-react-refresh": "^0.4.20",
  75. "eslint-plugin-testing-library": "^7.6.3",
  76. "eslint-plugin-unicorn": "^60.0.0",
  77. "jest": "^29.7.0",
  78. "prettier": "^3.6.2",
  79. "react-native-svg-transformer": "^1.5.0",
  80. "react-test-renderer": "19.1.0",
  81. "reactotron-react-native": "^5.1.12",
  82. "reactotron-react-native-mmkv": "^0.2.8",
  83. "reactotron-react-query": "^2.0.2",
  84. "typescript": "^5.8.2",
  85. "typescript-eslint": "^8.38.0"
  86. },
  87. "engines": {
  88. "node": ">=20.12"
  89. }
  90. }