databag/app/mobile/package.json

76 lines
2.5 KiB
JSON
Raw Normal View History

2022-01-14 07:59:53 +00:00
{
2023-02-15 19:45:36 +00:00
"name": "Databag",
"version": "0.0.1",
"private": true,
2022-01-14 07:59:53 +00:00
"scripts": {
2023-02-15 19:45:36 +00:00
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test": "jest"
2022-01-14 07:59:53 +00:00
},
"dependencies": {
2023-04-03 19:27:45 +00:00
"@braintree/sanitize-url": "^6.0.2",
2023-02-17 04:51:53 +00:00
"@react-native-clipboard/clipboard": "^1.11.1",
2023-02-15 19:45:36 +00:00
"@react-native-firebase/app": "^17.2.0",
"@react-native-firebase/messaging": "^17.2.0",
2023-02-15 23:47:18 +00:00
"@react-navigation/bottom-tabs": "^6.5.5",
"@react-navigation/drawer": "^6.6.0",
2023-02-15 19:45:36 +00:00
"@react-navigation/native": "^6.1.4",
2023-02-15 23:47:18 +00:00
"@react-navigation/native-stack": "^6.9.10",
"@react-navigation/stack": "^6.3.14",
2023-03-05 19:04:41 +00:00
"@sayem314/react-native-keep-awake": "^1.1.0",
2023-02-15 19:45:36 +00:00
"axios": "^1.3.3",
"crypto-js": "^3.3.0",
"jsencrypt": "^3.3.1",
2023-02-21 23:52:54 +00:00
"moment": "^2.29.4",
2023-02-15 19:45:36 +00:00
"react": "18.2.0",
"react-native": "0.71.3",
2022-09-07 07:32:06 +00:00
"react-native-base64": "^0.2.1",
2023-02-15 19:45:36 +00:00
"react-native-device-info": "^10.4.0",
2023-03-02 00:05:33 +00:00
"react-native-document-picker": "^8.1.3",
2023-02-15 19:45:36 +00:00
"react-native-gesture-handler": "^2.9.0",
2023-02-21 23:52:54 +00:00
"react-native-image-crop-picker": "^0.39.0",
"react-native-incall-manager": "^4.0.1",
2023-02-15 23:47:18 +00:00
"react-native-reanimated": "^2.14.4",
2023-03-02 16:18:38 +00:00
"react-native-reanimated-carousel": "^3.3.0",
"react-native-rsa-native": "^2.0.5",
2023-02-15 19:45:36 +00:00
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "^3.20.0",
2023-04-21 05:10:33 +00:00
"react-native-share": "^8.2.2",
"react-native-sqlite-storage": "^6.0.1",
2023-02-15 23:47:18 +00:00
"react-native-vector-icons": "^9.2.0",
2023-03-02 00:05:33 +00:00
"react-native-video": "^5.2.1",
2023-03-17 22:06:20 +00:00
"react-native-webrtc": "^106.0.7",
2023-03-02 00:05:33 +00:00
"react-native-wheel-color-picker": "^1.2.0",
2023-02-15 19:45:36 +00:00
"react-router-dom": "^6.8.1",
2023-04-21 05:10:33 +00:00
"react-router-native": "^6.8.1",
"rn-fetch-blob": "^0.12.0"
2022-01-14 07:59:53 +00:00
},
"devDependencies": {
2023-02-15 19:45:36 +00:00
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/dom": "^8.20.0",
"@testing-library/react-native": "^11.5.2",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"eslint": "^8.19.0",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "0.73.7",
"prettier": "^2.4.1",
"react-test-renderer": "18.2.0",
"typescript": "4.8.4"
2022-01-14 07:59:53 +00:00
},
2023-02-15 19:45:36 +00:00
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native(-.*)?|@react-native(-community)?)/)"
]
}
2022-01-14 07:59:53 +00:00
}