-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.2 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
{
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"start-clean": "expo r -c --localhost",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "jest --watchAll",
"prettier": "prettier --config .prettierrc \"**/*.{js,jsx,ts,tsx,css,scss,md}\" --write",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"lint-and-fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"type-check": "tsc --pretty --noEmit"
},
"eslintConfig": {
"extends": "universe/native"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo-google-fonts/nunito": "^0.2.0",
"@hookform/strictly-typed": "^0.0.4",
"@react-native-async-storage/async-storage": "~1.15.0",
"@react-native-community/masked-view": "0.1.10",
"@react-native-picker/picker": "2.2.1",
"@react-navigation/bottom-tabs": "^5.11.8",
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"@reduxjs/toolkit": "^1.5.0",
"date-fns": "^2.19.0",
"expo": "^44.0.0",
"expo-app-loading": "~1.3.0",
"expo-constants": "~13.0.0",
"expo-font": "~10.0.4",
"expo-image-picker": "~12.0.1",
"expo-status-bar": "~1.2.0",
"firebase": "8.2.3",
"react": "17.0.1",
"react-hook-form": "^6.15.4",
"react-native": "0.64.3",
"react-native-flash-message": "^0.1.23",
"react-native-gesture-handler": "~2.1.0",
"react-native-reanimated": "~2.3.1",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.10.1",
"react-native-svg": "12.1.1",
"react-navigation-header-buttons": "^6.2.1",
"react-redux": "^7.2.2",
"redux-persist": "^6.0.0",
"redux-persist-expo-filesystem": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.21.0",
"eslint-config-universe": "^7.0.1",
"jest-expo": "^44.0.0",
"prettier": "^2.2.1",
"type-fest": "^2.8.0",
"typescript": "~4.3.5"
}
}