-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.17 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
{
"name": "rntodoappts",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"android": "react-native run-android --active-arch-only",
"ios": "react-native run-ios",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test": "jest --watchAll --detectOpenHandles",
"test:related": "npm run test -- --bail --watchAll=false --findRelatedTests src/**/*.{ts,tsx} --passWithNoTests --forceExit",
"prettier": "prettier --check src",
"prepare": "husky install",
"graphql:codegen": "graphql-codegen --config .graphqlrc.yml"
},
"dependencies": {
"@hookform/resolvers": "^2.8.10",
"@react-native-community/netinfo": "^9.0.0",
"@react-navigation/bottom-tabs": "^6.3.1",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.2",
"@tanstack/react-query": "^4.0.10",
"identity-obj-proxy": "^3.0.0",
"immer": "^9.0.12",
"jotai": "^1.6.7",
"msw": "^0.49.0",
"react": "18.0.0",
"react-hook-form": "^7.31.1",
"react-native": "0.69.5",
"react-native-dotenv": "^3.3.1",
"react-native-gesture-handler": "^2.5.0",
"react-native-mmkv": "^2.4.3",
"react-native-paper": "^4.12.1",
"react-native-safe-area-context": "^4.2.5",
"react-native-screens": "^3.14.1",
"react-native-url-polyfill": "^1.3.0",
"react-native-vector-icons": "^9.2.0",
"twrnc": "^3.3.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/typescript": "^2.4.8",
"@graphql-codegen/typescript-msw": "^1.0.7",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-react-query": "^4.0.0",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^11.0.0",
"@types/jest": "^28.0.0",
"@types/react": "^18.0.0",
"@types/react-native": "^0.70.0",
"@types/react-native-vector-icons": "^6.4.10",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-jest": "^28.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"graphql": "^16.0.0",
"husky": "^8.0.0",
"jest": "^28.0.0",
"lint-staged": "^13.0.0",
"metro-react-native-babel-preset": "^0.76.0",
"react-devtools": "^4.14.0",
"react-devtools-core": "^4.14.0",
"react-test-renderer": "18.0.0",
"tsc-files": "^1.1.3",
"typescript": "^4.4.4",
"whatwg-fetch": "^3.6.2"
},
"resolutions": {
"@types/react": "^18"
}
}