-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.66 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
{
"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 . --ext .ts,.tsx --ignore-path .gitignore",
"codegen": "graphql-codegen --config ./apollo/codegen.js && yarn lint:graphql",
"lint:graphql": "eslint ./apollo/graphql.tsx --fix",
"relay": "relay-compiler",
"schema": "get-graphql-schema https://api.ana-hunter.dev/v1beta1/relay > schema/schema.graphql"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"dependencies": {
"@apollo/client": "^3.0.0-beta.44",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.4.2",
"@react-navigation/native": "^5.3.0",
"@react-navigation/stack": "^5.3.2",
"dayjs": "^1.8.26",
"expo": "^38.0.0",
"graphql": "^15.0.0",
"graphql-request": "^2.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-38.0.0.tar.gz",
"react-native-elements": "^2.0.0",
"react-native-gesture-handler": "~1.6.0",
"react-native-reanimated": "~1.9.0",
"react-native-safe-area-context": "~3.0.7",
"react-native-screens": "~2.9.0",
"react-native-skeleton-content": "^1.0.13",
"react-native-web": "~0.11.7",
"react-native-webview": "10.3.2",
"react-relay": "^10.0.1",
"recoil": "^0.0.10",
"relay-runtime": "^10.0.1",
"swr": "^0.2.3"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@graphql-codegen/cli": "^1.13.5",
"@graphql-codegen/introspection": "^1.13.5",
"@graphql-codegen/typescript": "^1.13.5",
"@graphql-codegen/typescript-operations": "^1.13.5",
"@graphql-codegen/typescript-react-apollo": "^1.13.5",
"@types/graphql": "^14.5.0",
"@types/react": "~16.9.41",
"@types/react-native": "~0.62.13",
"@types/react-relay": "^7.0.8",
"@types/recoil": "^0.0.1",
"@types/relay-runtime": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-plugin-inline-dotenv": "^1.5.0",
"babel-plugin-relay": "^10.0.1",
"babel-preset-expo": "^8.2.3",
"dotenv": "^8.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"get-graphql-schema": "^2.1.2",
"prettier": "^2.0.5",
"relay-compiler": "^10.0.1",
"relay-compiler-language-typescript": "^13.0.0",
"relay-config": "^10.0.1",
"typescript": "~3.9.5"
},
"private": true
}