-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.51 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.51 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
{
"name": "chefbot",
"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": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-masked-view/masked-view": "0.2.6",
"@react-navigation/bottom-tabs": "^6.3.2",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"expo": "^45.0.0",
"expo-document-picker": "~10.2.1",
"expo-file-system": "~14.0.0",
"expo-image-picker": "~13.1.1",
"expo-status-bar": "~1.3.0",
"expo-updates": "~0.13.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "~2.2.1",
"react-native-gifted-chat": "^1.0.4",
"react-native-reanimated": "~2.8.0",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-web": "0.17.7",
"react-navigation": "^4.4.4"
},
"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": "^45.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
}