package.json 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. "@react-native-masked-view/masked-view": "^0.3.2",
  20. "@react-navigation/native": "^7.1.16",
  21. "@react-navigation/stack": "^7.4.4",
  22. "@tanstack/react-query": "^5.84.0",
  23. "i18next": "^25.3.2",
  24. "intl-pluralrules": "^2.0.1",
  25. "ky": "^1.8.2",
  26. "react": "19.1.0",
  27. "react-error-boundary": "^5.0.0",
  28. "react-i18next": "^15.6.1",
  29. "react-native": "0.80.2",
  30. "react-native-gesture-handler": "^2.27.2",
  31. "react-native-mmkv": "^3.3.0",
  32. "react-native-reanimated": "^4.1.3",
  33. "react-native-safe-area-context": "^5.5.2",
  34. "react-native-screens": "4.13.1",
  35. "react-native-svg": "^15.12.1",
  36. "react-native-worklets": "^0.5.2",
  37. "zod": "^4.0.14"
  38. },
  39. "devDependencies": {
  40. "@babel/core": "^7.25.2",
  41. "@babel/plugin-transform-export-namespace-from": "^7.27.1",
  42. "@babel/preset-env": "^7.25.3",
  43. "@babel/runtime": "^7.26.10",
  44. "@eslint/js": "^9.23.0",
  45. "@react-native-community/cli": "19.1.1",
  46. "@react-native-community/cli-platform-android": "19.1.1",
  47. "@react-native-community/cli-platform-ios": "19.1.1",
  48. "@react-native/babel-preset": "0.80.2",
  49. "@react-native/eslint-config": "0.80.2",
  50. "@react-native/metro-config": "0.80.2",
  51. "@react-native/typescript-config": "0.80.2",
  52. "@testing-library/react-native": "^13.2.2",
  53. "@types/jest": "^29.5.13",
  54. "@types/node": "^22.13.17",
  55. "@types/react": "^19.1.0",
  56. "@types/react-test-renderer": "^19.1.0",
  57. "@typescript-eslint/parser": "^8.29.0",
  58. "babel-plugin-inline-dotenv": "^1.7.0",
  59. "babel-plugin-module-resolver": "^5.0.0",
  60. "babel-plugin-root-import": "^6.6.0",
  61. "dotenv": "^16.4.7",
  62. "eslint": "^9.32.0",
  63. "eslint-config-prettier": "^10.1.8",
  64. "eslint-import-resolver-typescript": "^4.4.4",
  65. "eslint-plugin-import": "^2.32.0",
  66. "eslint-plugin-jest": "^29.0.1",
  67. "eslint-plugin-perfectionist": "^4.15.0",
  68. "eslint-plugin-react": "^7.37.5",
  69. "eslint-plugin-react-hooks": "^5.2.0",
  70. "eslint-plugin-react-refresh": "^0.4.20",
  71. "eslint-plugin-testing-library": "^7.6.3",
  72. "eslint-plugin-unicorn": "^60.0.0",
  73. "jest": "^29.7.0",
  74. "prettier": "^3.6.2",
  75. "react-native-svg-transformer": "^1.5.0",
  76. "react-test-renderer": "19.1.0",
  77. "reactotron-react-native": "^5.1.12",
  78. "reactotron-react-native-mmkv": "^0.2.8",
  79. "reactotron-react-query": "^2.0.2",
  80. "typescript": "^5.8.2",
  81. "typescript-eslint": "^8.38.0"
  82. },
  83. "engines": {
  84. "node": ">=20.12"
  85. }
  86. }