1{ 2 "name": "MusicFree", 3 "version": "0.0.1-alpha", 4 "license": "GPL", 5 "private": true, 6 "author": { 7 "name": "猫头猫", 8 "email": "[email protected]" 9 }, 10 "scripts": { 11 "android": "react-native run-android", 12 "ios": "react-native run-ios", 13 "start": "react-native start", 14 "clean": "cd ./android && ./gradlew clean", 15 "test": "jest", 16 "commit-lint": "commitlint --edit", 17 "lint": "eslint . --ext .js,.jsx,.ts,.tsx src --fix", 18 "lint-staged": "lint-staged", 19 "connect-mumu": "adb kill-server & adb connect localhost:7555", 20 "build-android": "cd ./android && ./gradlew assembleRelease", 21 "prepare": "husky install" 22 }, 23 "dependencies": { 24 "@gorhom/bottom-sheet": "^4", 25 "@react-native-async-storage/async-storage": "^1.17.7", 26 "@react-native-clipboard/clipboard": "^1.11.0", 27 "@react-native-community/netinfo": "^9.3.0", 28 "@react-native-community/slider": "^4.2.4", 29 "@react-navigation/drawer": "^6.4.3", 30 "@react-navigation/native": "^6.0.11", 31 "@react-navigation/native-stack": "^6.7.0", 32 "axios": "^0.27.2", 33 "big-integer": "^1.6.51", 34 "cheerio": "^1.0.0-rc.12", 35 "color": "^4.2.3", 36 "compare-versions": "^5.0.1", 37 "crypto-js": "^4.1.1", 38 "dayjs": "^1.11.4", 39 "deepmerge": "^4.2.2", 40 "immer": "^9.0.15", 41 "jotai": "^1.7.4", 42 "lodash.shuffle": "^4.2.0", 43 "lru-cache": "^7.14.0", 44 "nanoid": "^4.0.0", 45 "object-path": "^0.11.8", 46 "qrcode-generator": "^1.4.4", 47 "qs": "^6.11.0", 48 "react": "18.0.0", 49 "react-native": "0.69.1", 50 "react-native-bootsplash": "^4.3.2", 51 "react-native-circular-progress-indicator": "^4.4.0", 52 "react-native-device-info": "^10.0.2", 53 "react-native-document-picker": "^8.1.1", 54 "react-native-fast-image": "^8.6.0", 55 "react-native-fs": "^2.20.0", 56 "react-native-gesture-handler": "^2.5.0", 57 "react-native-get-random-values": "^1.8.0", 58 "react-native-image-colors": "^1.5.1", 59 "react-native-image-picker": "^4.10.0", 60 "react-native-linear-gradient": "^2.6.2", 61 "react-native-logs": "^5.0.1", 62 "react-native-pager-view": "^5.4.25", 63 "react-native-paper": "^4.12.2", 64 "react-native-permissions": "^3.5.0", 65 "react-native-reanimated": "^2.9.1", 66 "react-native-safe-area-context": "^4.3.1", 67 "react-native-screens": "^3.15.0", 68 "react-native-svg": "^12.4.0", 69 "react-native-tab-view": "^3.1.1", 70 "react-native-toast-message": "^2.1.5", 71 "react-native-track-player": "3.2.0", 72 "react-native-vector-icons": "^9.2.0", 73 "react-native-view-shot": "^3.4.0", 74 "react-native-webview": "^11.23.0", 75 "react-qr-code": "^2.0.7", 76 "recyclerlistview": "^4.1.3" 77 }, 78 "devDependencies": { 79 "@babel/core": "^7.12.9", 80 "@babel/runtime": "^7.12.5", 81 "@commitlint/cli": "^17.0.3", 82 "@commitlint/config-conventional": "^17.0.3", 83 "@react-native-community/eslint-config": "^2.0.0", 84 "@tsconfig/react-native": "^2.0.0", 85 "@types/color": "^3.0.3", 86 "@types/crypto-js": "^4.1.1", 87 "@types/jest": "^26.0.23", 88 "@types/lodash.shuffle": "^4.2.7", 89 "@types/node": "^18.0.4", 90 "@types/object-path": "^0.11.1", 91 "@types/qs": "^6.9.7", 92 "@types/react": "^18", 93 "@types/react-native": "^0.69.1", 94 "@types/react-native-vector-icons": "^6.4.11", 95 "@types/react-test-renderer": "^18.0.0", 96 "@typescript-eslint/eslint-plugin": "^5.29.0", 97 "@typescript-eslint/parser": "^5.29.0", 98 "babel-jest": "^26.6.3", 99 "babel-plugin-module-resolver": "^4.1.0", 100 "eslint": "^7.32.0", 101 "eslint-config-prettier": "^8.5.0", 102 "eslint-plugin-prettier": "^4.2.1", 103 "husky": "^8.0.1", 104 "jest": "^26.6.3", 105 "lint-staged": "^13.0.3", 106 "metro-react-native-babel-preset": "^0.70.3", 107 "prettier": "^2.7.1", 108 "react-test-renderer": "18.0.0", 109 "typescript": "^4.4.4" 110 }, 111 "resolutions": { 112 "@types/react": "^18" 113 }, 114 "jest": { 115 "preset": "react-native", 116 "moduleFileExtensions": [ 117 "ts", 118 "tsx", 119 "js", 120 "jsx", 121 "json", 122 "node" 123 ] 124 }, 125 "lint-staged": { 126 "src/**/*.{ts,tsx}": [ 127 "npm run lint", 128 "git add ." 129 ] 130 }, 131 "repository": { 132 "type": "git", 133 "url": "git+https://github.com/maotoumao/MusicFree.git" 134 } 135} 136