-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
102 lines (102 loc) · 3.42 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
{
"name": "rnn-starter",
"version": "16.0.0",
"description": "Production-ready starter for your next React Native App! Powered by cli-rn, React Native Navigation, Expo Modules, RN UI lib, Mobx, Reanimated 2, Notifications, Permissions, Dark Mode, Localization, and much more.",
"author": "Batyr <[email protected]> (https://github.com/kanzitelli)",
"homepage": "https://github.com/kanzitelli/rnn-starter",
"private": false,
"scripts": {
"android": "yarn android:adb && npx react-native run-android",
"android:release": "yarn android --variant release",
"android:adb": "adb reverse tcp:8081 tcp:8081",
"ios": "npx react-native run-ios",
"ios:release": "yarn ios --configuration Release",
"ios:pods": "npx pod-install",
"ios:pods:ru": "cd ios && pod install --repo-update && cd ..",
"start": "npx react-native start",
"rename": "npx react-native-rename",
"splash:gen": "yarn splash:gen:ios && splash:gen:android",
"splash:gen:android": "yo rn-toolbox:assets --splash splashscreen.psd --android",
"splash:gen:ios": "yo rn-toolbox:assets --splash splashscreen.psd --ios",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check ./src",
"format:write": "prettier --write ./src",
"release": "dotenv release-it",
"postinstall": "patch-package"
},
"dependencies": {
"@kanzitelli/if-component": "^0.3.0",
"@shopify/flash-list": "^1.3.1",
"date-fns": "^2.29.3",
"expo": "^46.0.16",
"expo-localization": "^13.1.0",
"expo-status-bar": "~1.4.0",
"formik": "^2.2.9",
"i18n-js": "^4.1.1",
"lodash": "^4.17.21",
"mobx": "^6.6.2",
"mobx-persist-store": "^1.1.2",
"mobx-react": "^7.5.3",
"react": "18.1.0",
"react-native": "0.70.3",
"react-native-fast-image": "^8.6.1",
"react-native-gesture-handler": "^2.7.1",
"react-native-mmkv": "2.4.3",
"react-native-navigation": "7.29.0",
"react-native-navigation-hooks": "^6.3.0",
"react-native-reanimated": "^2.11.0",
"react-native-splash-screen": "^3.3.0",
"react-native-ui-lib": "^6.22.1",
"react-native-vector-icons": "^9.2.0",
"rn-bounceable": "^1.2.0",
"rnn-screens": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/runtime": "^7.19.4",
"@react-native-community/eslint-config": "^2.0.0",
"@tsconfig/react-native": "^2.0.2",
"@types/i18n-js": "^3.8.3",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.186",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.6",
"@types/react-native-vector-icons": "^6.4.12",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"babel-jest": "^26.6.3",
"dotenv-cli": "^6.0.0",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.72.2",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"react-test-renderer": "18.0.0",
"release-it": "^15.5.0",
"typescript": "^4.8.4"
},
"keywords": [
"react",
"react-native",
"react-native-navigation",
"react-native-navigation-with-expo",
"react-native-starter",
"react-native-template",
"expo-modules"
],
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"license": "MIT"
}