-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 3.14 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
{
"name": "kotobayama",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android:release": "react-native run-android --variant=release",
"pod-install": "cd ios && pod install && cd ../",
"ios": "react-native run-ios",
"ios:all": "npm run ios:se && npm run ios:ipad && npm run ios",
"ios:se": "react-native run-ios --simulator=\"iPhone SE\"",
"ios:ipad": "react-native run-ios --simulator=\"iPad Pro (11-inch) (2nd generation)\"",
"ios:release": "react-native run-ios --configuration Release",
"ios:list": "xcrun simctl list",
"ios:bundle": "node_modules/react-native/cli.js bundle --entry-file index.js --platform ios --dev false --reset-cache --bundle-output /dev/null",
"android:bundle": "node_modules/react-native/cli.js bundle --entry-file index.js --platform android --dev false --reset-cache --bundle-output /dev/null",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"images": "node scripts/images.js",
"apk": "npm run bugsnag:android && npm run build:apk",
"bugsnag:android": "bash scripts/upload_sourcemaps_android.sh",
"build:apk": "cd android && ./gradlew assembleRelease && cd app/build/outputs/apk/release/ && open . && cd ../../../.."
},
"dependencies": {
"@bugsnag/react-native": "^7.3.3",
"@react-native-community/async-storage": "^1.12.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"@types/crypto-js": "^3.1.47",
"@types/react-native-share": "^3.3.0",
"crypto-js": "3.3.0",
"mobx": "^5.15.6",
"mobx-react": "^6.3.0",
"mobx-utils": "^5.6.1",
"moment": "^2.27.0",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-animatable": "^1.3.3",
"react-native-confetti": "^0.1.0",
"react-native-device-info": "^5.6.5",
"react-native-gesture-handler": "^1.7.0",
"react-native-image-cache-wrapper": "^1.0.7",
"react-native-image-pan-zoom": "^2.1.12",
"react-native-linear-gradient": "^2.5.6",
"react-native-localize": "^1.4.1",
"react-native-maps": "0.27.1",
"react-native-progress": "^4.1.2",
"react-native-reanimated": "^1.13.0",
"react-native-responsive-screen": "^1.4.1",
"react-native-safe-area-context": "^3.1.7",
"react-native-screens": "^2.10.1",
"react-native-share": "^3.7.1",
"react-native-touchable-scale": "^2.1.1",
"react-native-view-shot": "^3.1.2",
"rn-fetch-blob": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@types/jest": "^26.0.10",
"@types/react": "^16.9.48",
"@types/react-native": "^0.63.11",
"@types/react-test-renderer": "^16.9.3",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.5.1",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"react-test-renderer": "16.13.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
},
"jest": {
"preset": "react-native"
}
}