package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "Denet",
  3. "version": "0.0.1",
  4. "private": true,
  5. "scripts": {
  6. "android": "DENET_ENV=dev react-native run-android",
  7. "ios": "DENET_ENV=dev react-native run-ios",
  8. "ios-test": "DENET_ENV=test react-native run-ios",
  9. "start": "react-native start",
  10. "test": "jest",
  11. "lint": "eslint . --ext .js,.jsx,.ts,.tsx"
  12. },
  13. "dependencies": {
  14. "@react-native-async-storage/async-storage": "^1.17.9",
  15. "@react-navigation/bottom-tabs": "^6.3.2",
  16. "@react-navigation/native": "^6.0.11",
  17. "@react-navigation/native-stack": "^6.7.0",
  18. "axios": "^0.27.2",
  19. "babel-plugin-inline-dotenv": "^1.7.0",
  20. "babel-plugin-inline-import": "^3.0.0",
  21. "cross-env": "^7.0.3",
  22. "react": "18.0.0",
  23. "react-native": "0.69.2",
  24. "react-native-animatable": "^1.3.3",
  25. "react-native-dotenv": "^3.3.1",
  26. "react-native-eventemitter": "^0.0.1",
  27. "react-native-linear-gradient": "^2.6.2",
  28. "react-native-modals": "^0.22.3",
  29. "react-native-safe-area-context": "^4.3.1",
  30. "react-native-screens": "^3.15.0",
  31. "react-native-storage": "^1.0.1",
  32. "react-native-svg": "^13.0.0",
  33. "react-native-webview": "^11.23.0"
  34. },
  35. "devDependencies": {
  36. "@babel/core": "^7.12.9",
  37. "@babel/runtime": "^7.12.5",
  38. "@react-native-community/eslint-config": "^2.0.0",
  39. "@tsconfig/react-native": "^2.0.2",
  40. "@types/jest": "^26.0.23",
  41. "@types/react-native": "^0.69.3",
  42. "@types/react-test-renderer": "^18.0.0",
  43. "@typescript-eslint/eslint-plugin": "^5.29.0",
  44. "@typescript-eslint/parser": "^5.29.0",
  45. "babel-jest": "^26.6.3",
  46. "babel-plugin-module-resolver": "^4.1.0",
  47. "eslint": "^7.32.0",
  48. "jest": "^26.6.3",
  49. "metro-react-native-babel-preset": "^0.70.3",
  50. "react-test-renderer": "18.0.0",
  51. "typescript": "^4.4.4"
  52. },
  53. "jest": {
  54. "preset": "react-native",
  55. "moduleFileExtensions": [
  56. "ts",
  57. "tsx",
  58. "js",
  59. "jsx",
  60. "json",
  61. "node"
  62. ]
  63. }
  64. }