-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.98 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
81
82
83
84
85
86
87
88
89
90
91
{
"main": "index.js",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ./",
"prettier": "prettier \"src/**/*\" --write",
"gql:gen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.1.4",
"@graphql-codegen/add": "^2.0.1",
"@graphql-codegen/near-operation-file-preset": "^1.17.11",
"@react-native-community/async-storage": "^1.11.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.6",
"@react-navigation/bottom-tabs": "^5.6.1",
"@react-navigation/native": "^5.6.1",
"@react-navigation/stack": "^5.6.2",
"expo-splash-screen": "^0.5.0",
"expo-status-bar": "^1.0.0",
"expo-updates": "~0.2.8",
"graphql": "^15.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"metro-react-native-babel-preset": "^0.63.0",
"prettier": "^2.1.1",
"react": "~16.11.0",
"react-dom": "~16.11.0",
"react-native": "~0.62.2",
"react-native-gesture-handler": "~1.6.0",
"react-native-localization": "^2.1.6",
"react-native-paper": "^4.0.1",
"react-native-reanimated": "~1.9.0",
"react-native-safe-area-context": "~3.0.7",
"react-native-screens": "~2.9.0",
"react-native-unimodules": "~0.10.0",
"react-native-vector-icons": "^7.0.0"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@graphql-codegen/cli": "1.17.8",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^3.3.0",
"@testing-library/react-native": "^7.0.1",
"@types/react": "~16.9.23",
"@types/react-dom": "^16.9.8",
"@types/react-native": "^0.63.11",
"babel-jest": "^26.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-react-native-a11y": "^2.0.1",
"eslint-plugin-testing-library": "^3.4.0",
"jest": "^26.2.2",
"jest-native": "^3.0.0",
"react-test-renderer": "16.11.0",
"typescript": "~4.0.2",
"@graphql-codegen/typescript": "1.17.8",
"@graphql-codegen/typescript-operations": "1.17.8",
"@graphql-codegen/typescript-react-apollo": "2.0.6",
"@graphql-codegen/typescript-graphql-files-modules": "1.17.8",
"@graphql-codegen/typescript-document-nodes": "1.17.8",
"@graphql-codegen/fragment-matcher": "1.17.8",
"@graphql-codegen/introspection": "1.17.8"
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"private": true
}