-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.37 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.37 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
{
"name": "habit-loop",
"private": true,
"scripts": {
"start": "__DEV__=true NODE_ENV=dev expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@apollo/client": "^3.0.0-beta.4",
"@babel/runtime": "^7.6.2",
"@expo/vector-icons": "^10.0.0",
"@react-native-community/masked-view": "0.1.5",
"@react-navigation/bottom-tabs": "^5.0.0-alpha.34",
"@react-navigation/core": "^5.0.0-alpha.32",
"@react-navigation/native": "^5.0.0-alpha.24",
"@react-navigation/native-stack": "5.0.0-alpha.16",
"@react-navigation/stack": "^5.0.0-alpha.58",
"apollo-boost": "^0.4.4",
"expo": "^36.0.0",
"expo-asset": "~8.0.0",
"expo-constants": "~8.0.0",
"expo-font": "~8.0.0",
"expo-permissions": "~8.0.0",
"formik": "^1.4.2",
"graphql": "^14.5.8",
"lodash": "^4.17.15",
"lottie-react-native": "~2.6.1",
"native-base": "2.13.8",
"react": "16.9.0",
"react-apollo": "^2.5.8",
"react-apollo-hooks": "^0.4.5",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.1.tar.gz",
"react-native-gesture-handler": "~1.5.0",
"react-native-picker-select": "^6.1.0",
"react-native-reanimated": "^1.2.0",
"react-native-safe-area-context": "0.6.0",
"react-native-safe-area-view": "^1.0.0",
"react-native-screens": "^2.0.0-alpha.22",
"react-native-svg": "9.13.3",
"react-native-svg-animated-linear-gradient": "^0.1.9",
"react-native-svg-transformer": "^0.14.3",
"styled-components": "^4.1.3",
"svg": "^0.1.0",
"unstated-next": "^1.1.0",
"yup": "^0.26.6"
},
"devDependencies": {
"@types/react": "^16.9.0",
"@types/react-native": "^0.60.15",
"@types/styled-components": "^4.1.19",
"@types/yup": "^0.26.24",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-preset-expo": "^8.0.0",
"eslint": "^6.4.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"jest-expo": "^36.0.0",
"prettier": "^1.18.2",
"reactotron-react-native": "^4.0.2",
"typescript": "^3.7.4"
}
}