-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.47 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
{
"version": "0.3.9",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"dependencies": {
"@apollo/client": "^3.2.5",
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.10.6",
"@react-navigation/native": "^5.8.6",
"@react-navigation/stack": "^5.12.3",
"expo": "^47.0.13",
"expo-constants": "~14.0.2",
"expo-file-system": "~15.1.1",
"expo-location": "~15.0.1",
"expo-updates": "~0.15.6",
"graphql": "^15.4.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-gesture-handler": "~2.8.0",
"react-native-paper": "^4.3.1",
"react-native-reanimated": "~2.12.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-web": "~0.18.9",
"react-native-webview": "11.23.1",
"react-use": "^17.4.0",
"rn-pdf-reader-js": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/react": "~17.0.21",
"@types/react-dom": "~17.0.9",
"@types/react-native": "~0.64.12",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"git-cz": "^4.7.6",
"husky": "^8.0.0",
"jest": "^26.6.3",
"jest-expo": "^43.0.0",
"prettier": "^2.1.2",
"standard-version": "^9.0.0",
"typescript": "4.0.3"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"format": "prettier --write '*/**/*.{ts,tsx}'",
"commit": "git-cz",
"release": "standard-version",
"prepare": "husky install"
},
"resolutions": {
"@expo/config-plugins": "^5.0.2",
"@expo/prebuild-config": "~5.0.3",
"expo-modules-autolinking": "~1.0.0"
}
}