-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
107 lines (107 loc) · 3.6 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "lnreader",
"version": "2.0.0",
"private": true,
"scripts": {
"android": "npm run prestart && react-native run-android --active-arch-only",
"ios": "react-native run-ios",
"prestart": "node scripts/setEnvFile.cjs Debug",
"start": "react-native start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\" ./scripts",
"buildRelease": "node scripts/setEnvFile.cjs Release && cd android && ./gradlew clean && ./gradlew assembleRelease",
"open": "open ./android/app/build/outputs/apk/release/",
"strings": "node scripts/stringTypes.cjs",
"prepare": "husky install"
},
"dependencies": {
"@cd-z/react-native-epub-creator": "^2.0.4",
"@gorhom/bottom-sheet": "^4.4.5",
"@react-native-community/slider": "^4.4.2",
"@react-native-cookies/cookies": "^6.2.1",
"@react-native-google-signin/google-signin": "^11.0.0",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.0.11",
"@shopify/flash-list": "^1.4.3",
"cheerio": "^1.0.0-rc.12",
"color": "^4.2.3",
"dayjs": "^1.11.10",
"expo": "^49.0.23",
"expo-clipboard": "~4.3.1",
"expo-document-picker": "~11.5.4",
"expo-file-system": "~15.4.5",
"expo-haptics": "~12.4.0",
"expo-keep-awake": "~12.3.0",
"expo-linear-gradient": "~12.3.0",
"expo-linking": "~5.0.2",
"expo-localization": "~14.3.0",
"expo-navigation-bar": "^2.8.1",
"expo-notifications": "~0.20.1",
"expo-speech": "~11.3.0",
"expo-sqlite": "~11.3.3",
"expo-web-browser": "~12.3.2",
"htmlparser2": "^9.1.0",
"i18n-js": "^3.8.0",
"lodash-es": "^4.17.21",
"protobufjs": "^7.2.6",
"react": "18.2.0",
"react-native": "0.72.10",
"react-native-background-actions": "^3.0.1",
"react-native-device-info": "^8.4.7",
"react-native-drawer-layout": "^3.2.2",
"react-native-error-boundary": "^1.1.16",
"react-native-gesture-handler": "~2.12.0",
"react-native-lottie-splash-screen": "^1.0.1",
"react-native-mmkv": "^2.11.0",
"react-native-pager-view": "6.2.0",
"react-native-paper": "^5.12.0",
"react-native-reanimated": "^3.3.0",
"react-native-saf-x": "^2.2.3",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "^3.22.0",
"react-native-shimmer-placeholder": "^2.0.9",
"react-native-tab-view": "^3.5.2",
"react-native-url-polyfill": "^2.0.0",
"react-native-vector-icons": "^9.0.0",
"react-native-webview": "^13.10.5",
"react-native-zip-archive": "^7.0.0",
"sanitize-html": "^2.13.0",
"urlencode": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.12",
"@tsconfig/react-native": "^3.0.0",
"@types/color": "^3.0.3",
"@types/i18n-js": "^3.8.2",
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.24",
"@types/react-native-vector-icons": "^6.4.10",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.19.0",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"metro-react-native-babel-preset": "^0.76.9",
"prettier": "^2.4.1",
"react-native-dotenv": "^3.4.9",
"typescript": "^5.1.3"
},
"resolutions": {
"@types/react": "^17"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --check"
]
},
"engines": {
"node": ">=16"
}
}