This repository was archived by the owner on May 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.57 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.57 KB
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
{
"name": "rn-base-app",
"version": "2.0.0",
"main": "node_modules/expo/AppEntry.js",
"engines": {
"node": ">=16.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cymagix/expo-react-native-base.git"
},
"author": "cymagix",
"private": true,
"scripts": {
"dev": "npm run start",
"start": "expo start",
"start:production": "expo start --no-dev --minify",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"upgrade": "expo upgrade",
"login": "eas account:login",
"credentials": "eas credentials",
"build:web": "expo build:web",
"build:ios": "eas build --platform ios",
"build:android": "eas build --platform android",
"submit:ios": "eas submit --platform ios",
"submit:android": "eas submit --platform android",
"publish": "eas update",
"test": "jest --watchAll",
"lint": "eslint . --ext .tsx,.ts",
"lint:fix": "eslint --fix . --ext .tsx,.ts",
"fix:dep": "expo-cli doctor --fix-dependencies",
"format": "prettier --write './**/*.{js,ts,tsx}' --config ./.prettierrc.js",
"typecheck": "tsc"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "13.0.0",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-navigation/bottom-tabs": "^6.4.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.1",
"@reduxjs/toolkit": "1.8.5",
"axios": "0.27.2",
"expo": "^46.0.17",
"expo-asset": "~8.6.1",
"expo-constants": "~13.2.4",
"expo-device": "~4.3.0",
"expo-font": "~10.2.0",
"expo-linking": "~3.2.2",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"native-base": "^3.4.22",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.6",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.3.0",
"react-native-web": "~0.18.7",
"react-redux": "^8.0.5",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "7.19.1",
"@types/react": "17.0.49",
"@types/react-native": "0.69.8",
"@types/react-redux": "7.1.24",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eas-cli": "^2.7.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"expo-cli": "6.2.1",
"prettier": "^2.7.1",
"typescript": "4.8.3"
}
}