-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.24 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.24 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
{
"name": "hangman-app",
"version": "0.0.1",
"license": "MIT",
"author": "Dante Calderon <mail@dantecalderon.dev>",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"pretty": "prettier --write \"./**/*.{ts,tsx}\"",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@eva-design/eva": "^1.4.0",
"@expo/vector-icons": "~10.0.0",
"@react-native-community/masked-view": "0.1.5",
"@react-navigation/bottom-tabs": "^5.0.0",
"@react-navigation/native": "^5.0.0",
"@react-navigation/stack": "^5.0.0",
"@react-navigation/web": "~1.0.0-alpha.9",
"@ui-kitten/components": "^4.4.0",
"apollo-boost": "^0.4.7",
"apollo-cache-persist": "^0.1.1",
"apollo-client": "^2.6.8",
"color": "^3.1.2",
"expo": "~36.0.0",
"expo-asset": "~8.0.0",
"expo-constants": "~8.0.0",
"expo-font": "~8.0.0",
"expo-web-browser": "~8.0.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"lodash.get": "^4.4.2",
"lottie-react-native": "~2.6.1",
"react": "~16.9.0",
"react-apollo": "^3.1.3",
"react-dom": "~16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
"react-native-animated-loader": "^0.0.8",
"react-native-gesture-handler": "~1.5.0",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-shadow": "^1.2.2",
"react-native-svg": "^11.0.1",
"react-native-web": "~0.11.7",
"slsx": "^0.0.2",
"typescript": "^3.8.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/color": "^3.0.1",
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.21",
"@types/react-native": "^0.61.16",
"@types/react-navigation": "^3.4.0",
"babel-preset-expo": "~8.0.0",
"husky": "^4.2.3",
"jest-expo": "~36.0.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"tslint": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"private": true
}