-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.75 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
{
"name": "doge-app",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint .",
"format": "prettier --write '**/*.js'",
"test": "jest"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.15.0",
"@react-native-community/checkbox": "^0.5.9",
"@react-native-masked-view/masked-view": "0.2.5",
"@react-native-picker/picker": "github:react-native-picker/picker",
"@react-navigation/bottom-tabs": "^6.0.9",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"expo": "^43.0.0",
"expo-app-loading": "~1.2.1",
"expo-image-picker": "~11.0.3",
"expo-location": "^13.0.4",
"expo-status-bar": "~1.1.0",
"install": "^0.13.0",
"npm": "^8.3.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-login-modal": "^1.2.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-43.tar.gz",
"react-native-gesture-handler": "~1.10.2",
"react-native-ionicons": "^4.6.5",
"react-native-maps": "0.28.1",
"react-native-paper": "^4.11.0",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.8.0",
"react-native-vector-icons": "^9.0.0",
"react-native-web": "0.17.1",
"react-navigation": "^4.4.4",
"react-router-native": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@testing-library/jest-native": "^4.0.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/react-native": "^8.0.0",
"eslint": "^7.24.0",
"eslint-config-handlebarlabs": "^0.0.6",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"jest-expo": "^43.0.0",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
]
},
"keywords": [
"expo",
"template",
"expo-template",
"react-native-school",
"react-native",
"react-native-template",
"jest",
"eslint",
"prettier"
],
"homepage": "https://github.com/ReactNativeSchool/react-native-school-expo-template",
"bugs": {
"url": "https://github.com/ReactNativeSchool/react-native-school-expo-template/issues"
},
"author": "Spencer Carli",
"license": "MIT",
"private": true
}