1{ 2 "name": "MusicFree", 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 "clean": "cd ./android && ./gradlew clean", 10 "test": "jest", 11 "commit-lint": "commitlint --edit", 12 "lint": "eslint . --ext .js,.jsx,.ts,.tsx", 13 "connect-mumu": "adb kill-server & adb connect localhost:7555", 14 "build-android": "cd ./android && ./gradlew assembleRelease", 15 "prepare": "husky install" 16 }, 17 "dependencies": { 18 "@gorhom/bottom-sheet": "^4", 19 "@react-native-async-storage/async-storage": "^1.17.7", 20 "@react-native-community/slider": "^4.2.4", 21 "@react-navigation/drawer": "^6.4.3", 22 "@react-navigation/native": "^6.0.11", 23 "@react-navigation/native-stack": "^6.7.0", 24 "axios": "^0.27.2", 25 "color": "^4.2.3", 26 "crypto-js": "^4.1.1", 27 "dayjs": "^1.11.4", 28 "deepmerge": "^4.2.2", 29 "immer": "^9.0.15", 30 "jotai": "^1.7.4", 31 "lodash.shuffle": "^4.2.0", 32 "nanoid": "^4.0.0", 33 "react": "18.0.0", 34 "react-native": "0.69.1", 35 "react-native-bootsplash": "^4.3.2", 36 "react-native-circular-progress-indicator": "^4.4.0", 37 "react-native-document-picker": "^8.1.1", 38 "react-native-fs": "^2.20.0", 39 "react-native-gesture-handler": "^2.5.0", 40 "react-native-get-random-values": "^1.8.0", 41 "react-native-image-colors": "^1.5.1", 42 "react-native-linear-gradient": "^2.6.2", 43 "react-native-logs": "^5.0.1", 44 "react-native-music-control": "^1.4.1", 45 "react-native-pager-view": "^5.4.25", 46 "react-native-paper": "^4.12.2", 47 "react-native-permissions": "^3.5.0", 48 "react-native-reanimated": "^2.9.1", 49 "react-native-safe-area-context": "^4.3.1", 50 "react-native-screens": "^3.15.0", 51 "react-native-svg": "^12.4.0", 52 "react-native-tab-view": "^3.1.1", 53 "react-native-toast-message": "^2.1.5", 54 "react-native-track-player": "2.2.0-rc4", 55 "react-native-vector-icons": "^9.2.0" 56 }, 57 "devDependencies": { 58 "@babel/core": "^7.12.9", 59 "@babel/runtime": "^7.12.5", 60 "@commitlint/cli": "^17.0.3", 61 "@commitlint/config-conventional": "^17.0.3", 62 "@react-native-community/eslint-config": "^2.0.0", 63 "@tsconfig/react-native": "^2.0.0", 64 "@types/color": "^3.0.3", 65 "@types/crypto-js": "^4.1.1", 66 "@types/jest": "^26.0.23", 67 "@types/lodash.shuffle": "^4.2.7", 68 "@types/node": "^18.0.4", 69 "@types/react": "^18", 70 "@types/react-native": "^0.69.1", 71 "@types/react-native-vector-icons": "^6.4.11", 72 "@types/react-test-renderer": "^18.0.0", 73 "@typescript-eslint/eslint-plugin": "^5.29.0", 74 "@typescript-eslint/parser": "^5.29.0", 75 "babel-jest": "^26.6.3", 76 "babel-plugin-module-resolver": "^4.1.0", 77 "eslint": "^7.32.0", 78 "husky": "^8.0.1", 79 "jest": "^26.6.3", 80 "metro-react-native-babel-preset": "^0.70.3", 81 "react-test-renderer": "18.0.0", 82 "typescript": "^4.4.4" 83 }, 84 "resolutions": { 85 "@types/react": "^18" 86 }, 87 "jest": { 88 "preset": "react-native", 89 "moduleFileExtensions": [ 90 "ts", 91 "tsx", 92 "js", 93 "jsx", 94 "json", 95 "node" 96 ] 97 } 98} 99