This repository has been archived by the owner on May 9, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathpackage.json
101 lines (101 loc) · 3 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
{
"name": "surmon.me.native",
"description": "App for Surmon.me blog",
"version": "1.1.4",
"private": false,
"author": {
"name": "Surmon",
"email": "[email protected]",
"url": "https://surmon.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/surmon-china/surmon.me.native/issues"
},
"homepage": "https://github.com/surmon-china/surmon.me.native",
"repository": {
"type": "git",
"url": "https://github.com/surmon-china/surmon.me.native.git"
},
"resolutions": {
"terser": "3.17.0"
},
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"all": "yarn ios && yarn android",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"postversion": "react-native-version",
"release:android": "cd android && ./gradlew assembleRelease"
},
"dependencies": {
"@react-native-community/async-storage": "^1.8.0",
"@react-native-community/masked-view": "^0.1.6",
"@react-navigation/bottom-tabs": "^5.0.7",
"@react-navigation/native": "^5.0.7",
"@react-navigation/stack": "^5.0.8",
"@sentry/react-native": "^1.3.3",
"autobind-decorator": "^2.4.0",
"global": "^4.4.0",
"gravatar": "^1.8.0",
"highlight.js": "^9.18.1",
"marked": "0.6.3",
"metro": "^0.58.0",
"mobx": "^5.15.4",
"mobx-react": "^6.1.8",
"query-string": "^6.11.0",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-actionsheet": "^2.4.2",
"react-native-appearance": "^0.3.2",
"react-native-autoheight-webview": "^1.4.2",
"react-native-gesture-handler": "^1.6.0",
"react-native-image-viewing": "^0.1.6",
"react-native-localize": "^1.3.3",
"react-native-reanimated": "^1.7.0",
"react-native-root-toast": "^3.2.0",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.0.0",
"react-native-splash-screen": "^3.2.0",
"react-native-webview": "^8.1.2"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"@types/gravatar": "^1.8.0",
"@types/highlight.js": "^9.12.3",
"@types/jest": "^24.0.24",
"@types/marked": "0.6.5",
"@types/react": "^16.9.22",
"@types/react-native": "^0.60.25",
"@types/react-test-renderer": "16.9.1",
"@types/shelljs": "^0.8.6",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-jest": "^24.9.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-native-version": "^4.0.0",
"react-test-renderer": "16.9.0",
"shelljs": "^0.8.3",
"typescript": "^3.7.3",
"xml-js": "^1.6.11"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}