forked from youniaogu/MangaReader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4.4 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
108
109
110
111
{
"name": "mangareader",
"version": "0.7.5",
"publishTime": "2024-06-10",
"private": true,
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"android-release": "react-native run-android --mode release",
"build-android": "cd ./android && ./gradlew assembleRelease",
"bundle-android": "npx react-native build-android --mode=release",
"ios": "react-native run-ios",
"ios-release": "react-native run-ios --configuration Release",
"clean": "react-native-clean-project",
"preinstall": "npx only-allow yarn",
"postinstall": "patch-package",
"prepare": "husky install",
"jsonschema": "yarn root-schema && yarn dict-schema && yarn task-schema && yarn plugin-schema && yarn setting-schema && yarn favorites-schema",
"root-schema": "typescript-json-schema ./tsconfig.json RootStateType -o ./src/schema/root.json --required",
"dict-schema": "typescript-json-schema ./tsconfig.json DictStateType -o ./src/schema/dict.json --required",
"task-schema": "typescript-json-schema ./tsconfig.json TaskStateType -o ./src/schema/task.json --required",
"plugin-schema": "typescript-json-schema ./tsconfig.json PluginStateType -o ./src/schema/plugin.json --required",
"setting-schema": "typescript-json-schema ./tsconfig.json SettingStateType -o ./src/schema/setting.json --required",
"favorites-schema": "typescript-json-schema ./tsconfig.json FavoritesStateType -o ./src/schema/favorites.json --required",
"lint": "eslint \"**/*.{ts,tsx}\"",
"test": "jest"
},
"dependencies": {
"@georstat/react-native-image-cache": "^2.9.0",
"@loadable/component": "^5.15.2",
"@react-native-async-storage/async-storage": "^1.17.4",
"@react-native-camera-roll/camera-roll": "^5.2.4",
"@react-native-cookies/cookies": "^6.2.1",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.2",
"@reduxjs/toolkit": "^1.8.1",
"@shopify/flash-list": "^1.4.3",
"base-64": "^1.0.0",
"blueimp-md5": "2.2.0",
"buffer": "^6.0.3",
"cheerio": "1.0.0-rc.10",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.10",
"json-schema-library": "^9.0.3",
"lz-string": "^1.4.4",
"native-base": "^3.4.4",
"query-string": "^7.1.1",
"react": "18.2.0",
"react-error-boundary": "^4.0.12",
"react-native": "0.72.10",
"react-native-bootsplash": "^4.3.2",
"react-native-canvas": "^0.1.38",
"react-native-document-picker": "^9.0.1",
"react-native-draggable-flatlist": "^4.0.1",
"react-native-fast-image": "^8.6.3",
"react-native-file-access": "^2.4.1",
"react-native-gesture-handler": "^2.12.0",
"react-native-reanimated": "^3.3.0",
"react-native-safe-area-context": "^4.7.4",
"react-native-screens": "^3.13.1",
"react-native-share": "^9.4.1",
"react-native-svg": "12.1.1",
"react-native-vector-icons": "^10.0.0",
"react-native-volume-manager": "^1.5.1",
"react-native-webview": "^11.23.0",
"react-redux": "^8.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.11",
"@tsconfig/react-native": "^3.0.0",
"@types/base-64": "^1.0.0",
"@types/blueimp-md5": "^2.18.0",
"@types/cheerio": "^0.22.31",
"@types/crypto-js": "^4.1.1",
"@types/loadable__component": "^5.13.4",
"@types/lz-string": "^1.5.0",
"@types/react": "^18.0.24",
"@types/react-native-canvas": "^0.1.9",
"@types/react-native-vector-icons": "^6.4.13",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.19.0",
"husky": "^8.0.3",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "0.76.8",
"patch-package": "^7.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.4.1",
"react-native-clean-project": "^4.0.1",
"react-test-renderer": "18.2.0",
"typescript": "4.8.4",
"typescript-json-schema": "^0.62.0"
},
"engines": {
"node": ">=18"
},
"repository": "https://github.com/youniaogu/MangaReader",
"author": "youniaogu (https://github.com/youniaogu)",
"bugs": {
"url": "https://github.com/youniaogu/MangaReader/issues"
},
"homepage": "https://github.com/youniaogu/MangaReader#readme",
"license": "MIT"
}