-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
91 lines (91 loc) · 3.27 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
{
"name": "rn-eu-react-query",
"private": false,
"version": "2.0.0",
"appName": "@advantys/rn-eu-react-query",
"license": "MIT",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"generate": "graphql-codegen --config .graphqlrc.yml",
"lint:check": "eslint --ext '.js,.ts,.tsx' .",
"lint:fix": "yarn lint --fix",
"prettier": "prettier \"{.,src,src/**}/*.{md,js,jsx,ts,tsx,json}\"",
"prettier:check": "yarn prettier -c",
"prettier:fix": "yarn prettier -w",
"type:check": "tsc --noEmit",
"dev:check": "yarn prettier:check & yarn lint:check & yarn type:check",
"hasura:up": "cd hasura; docker-compose up",
"hasura:down": "cd hasura; docker-compose down",
"hasura:logs": "cd hasura; docker-compose logs -f",
"hasura:console": "cd hasura; hasura console",
"test": "jest",
"test:silent": "jest --silent --detectOpenHandles --forceExit",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage; open coverage/lcov-report/index.html"
},
"dependencies": {
"@babel/types": "^7.22.5",
"@expo/cli": "^0.10.11",
"@expo/vector-icons": "^13.0.0",
"@expo/webpack-config": "^18.1.2",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/netinfo": "^9.4.1",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.7",
"@tanstack/query-async-storage-persister": "^4.32.1",
"@tanstack/query-sync-storage-persister": "^4.32.1",
"@tanstack/react-query": "^4.32.6",
"@tanstack/react-query-persist-client": "^4.32.6",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^12.2.0",
"color": "^3.1.3",
"expo": "^49.0.0",
"expo-constants": "~14.4.2",
"expo-font": "~11.4.0",
"expo-status-bar": "~1.6.0",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"msw": "^1.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.3",
"react-native": "0.72.3",
"react-native-gesture-handler": "~2.12.0",
"react-native-paper": "^4.12.4",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "^4.7.1",
"react-native-screens": "~3.22.0",
"react-native-vector-icons": "^10.0.0",
"react-native-web": "~0.19.6"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@callstack/eslint-config": "^13.0.2",
"@expo/config": "~8.1.1",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-query": "^4.1.0",
"@types/base-64": "^0.1.3",
"@types/color": "^3.0.1",
"@types/jest": "^26.0.24",
"@types/react": "~18.2.14",
"@types/react-dom": "~18.0.10",
"@types/react-native": "~0.63.2",
"babel-jest": "~25.2.6",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.46.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"jest-expo": "^49.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.3"
}
}