-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.19 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
{
"name": "rnn-with-expo",
"version": "1.1.1",
"description": "Minimalistic React Native App Starter with React Native Navigation and Expo Modules.",
"author": "Batyr <dev@batyr.io> (https://github.com/kanzitelli)",
"homepage": "https://github.com/starters-dev/rnn-with-expo",
"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",
"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": {
"expo": "^46.0.10",
"react": "18.1.0",
"react-native": "0.70.0",
"react-native-navigation": "7.29",
"rnn-screens": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/runtime": "^7.19.0",
"@react-native-community/eslint-config": "^2.0.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.69.8",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"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.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"react-test-renderer": "18.1.0",
"typescript": "^4.4.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"
}