forked from kanzitelli/rnn-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 3.11 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
{
"name": "rnn-starter",
"version": "9.3.1",
"description": "Production-ready starter for your next React Native App! Powered by cli-rn, React Native Navigation, RN UI lib, Mobx, Reanimated 2, Notifications, Permissions, Dark Mode, Localization, and much more.",
"author": "Batyr <dev@batyr.io>",
"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",
"tvos": "npx react-native run-ios --scheme=\"RNNStarter-tvOS\" --simulator=\"Apple TV\"",
"ios:release": "yarn ios --configuration Release",
"ios:pods": "npx pod-install",
"start": "npx react-native start",
"rename": "npx react-native-rename",
"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": {
"@react-native-async-storage/async-storage": "^1.15.6",
"@react-native-community/blur": "^3.6.0",
"@react-native-community/datetimepicker": "^3.5.2",
"@react-native-community/netinfo": "^6.0.0",
"@react-native-picker/picker": "^1.16.6",
"date-fns": "^2.23.0",
"formik": "^2.2.9",
"i18n-js": "^3.8.0",
"lodash": "^4.17.21",
"mobx": "^6.3.2",
"mobx-persist-store": "^1.0.3",
"mobx-react": "^7.2.0",
"react": "^17.0.2",
"react-native": "npm:react-native-tvos@0.64.2-4",
"react-native-device-info": "^8.3.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-localize": "^2.1.1",
"react-native-mmkv": "1.1.6",
"react-native-navigation": "^7.20.0",
"react-native-navigation-hooks": "^6.3.0",
"react-native-reanimated": "^2.2.1",
"react-native-ui-lib": "^5.30.1",
"react-native-vector-icons": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/runtime": "^7.15.3",
"@react-native-community/eslint-config": "^3.0.0",
"@types/i18n-js": "^3.8.2",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/react": "^17.0.19",
"@types/react-native": "^0.64.13",
"@types/react-native-vector-icons": "^6.4.8",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-jest": "^27.0.6",
"dotenv-cli": "^4.0.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"metro-react-native-babel-preset": "^0.66.2",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.2",
"release-it": "^14.11.5",
"typescript": "^4.3.5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"license": "MIT"
}