-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "todo_app",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"dev": "react-native run-android && scrcpy -S -w",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier 'src/**/*.tsx'",
"buildDebug": "npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res && cd android && ./gradlew assembleDebug"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.9",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/slider": "^3.0.3",
"@react-navigation/bottom-tabs": "^5.11.10",
"@react-navigation/drawer": "^5.12.9",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.9",
"axios": "^0.24.0",
"buffer": "^6.0.3",
"intl": "^1.2.5",
"react": "17.0.2",
"react-native": "0.66.1",
"react-native-background-timer": "^2.4.1",
"react-native-draggable-flatlist": "^2.6.2",
"react-native-dropdown-picker": "^5.1.20",
"react-native-gesture-handler": "^1.10.3",
"react-native-music-control": "^1.4.0",
"react-native-paper": "^4.10.0",
"react-native-reanimated": "^2.1.0",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.1.1",
"react-native-simple-toast": "^1.1.3",
"react-native-sound-player": "^0.11.1",
"react-native-tab-view": "^3.1.1",
"react-native-text-ticker": "^1.14.0",
"react-native-vector-icons": "^9.0.0",
"react-native-ytdl": "^4.8.3",
"react-redux": "^7.2.6",
"redux": "^4.1.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.0",
"rn-fetch-blob": "^0.12.0",
"util": "^0.12.4",
"youtube-music-api": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.16.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^27.0.2",
"@types/react-native": "^0.67.6",
"@types/react-native-vector-icons": "^6.4.9",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "^27.4.6",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"metro-react-native-babel-preset": "^0.75.1",
"prettier": "^2.4.1",
"react-test-renderer": "17.0.2",
"typescript": "^4.8.2"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}