-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 4.72 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"scripts": {
"start": "expo start --dev-client",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"lint": "eslint .",
"test": "TZ=UTC jest",
"watch:test": "TZ=UTC jest --watch",
"deploy:ios": "cd ios && bundle exec fastlane bump_version && bundle exec fastlane deploy",
"deploy:ios:canary": "cd ios && bundle exec fastlane bump_version && bundle exec fastlane deploy_canary",
"deploy:android": "cd android && bundle exec fastlane bump_version && PACKAGE_NAME=me.tinykitten.trainlcd bundle exec fastlane deploy",
"deploy:android:canary": "cd android && bundle exec fastlane bump_version && PACKAGE_NAME=me.tinykitten.trainlcd.dev bundle exec fastlane deploy_canary",
"generate": "buf generate --path proto",
"postinstall": "patch-package && npm run generate"
},
"dependencies": {
"@connectrpc/connect-query": "^1.3.1",
"@expo/react-native-action-sheet": "^3.8.0",
"@expo/vector-icons": "^14.0.4",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "11.3.1",
"@react-native-firebase/analytics": "^18.3.2",
"@react-native-firebase/app": "^18.3.2",
"@react-native-firebase/auth": "^18.3.2",
"@react-native-firebase/firestore": "^18.3.2",
"@react-native-firebase/messaging": "^18.3.2",
"@react-native-firebase/remote-config": "^18.3.2",
"@react-native-firebase/storage": "^18.3.2",
"@react-native-picker/picker": "2.7.5",
"@react-navigation/native": "^5.9.8",
"@react-navigation/stack": "^5.14.9",
"@tanstack/react-query": "^5.55.4",
"dayjs": "^1.10.7",
"expo": "~51.0.26",
"expo-application": "~5.9.1",
"expo-av": "~14.0.5",
"expo-constants": "~16.0.2",
"expo-device": "~6.0.2",
"expo-file-system": "~17.0.1",
"expo-haptics": "~13.0.1",
"expo-image": "~1.12.12",
"expo-keep-awake": "~13.0.2",
"expo-linear-gradient": "~13.0.2",
"expo-linking": "~6.3.1",
"expo-localization": "~15.0.3",
"expo-location": "~17.0.1",
"expo-notifications": "~0.28.9",
"expo-screen-capture": "~6.0.1",
"expo-splash-screen": "~0.27.5",
"expo-task-manager": "~11.8.2",
"expo-web-browser": "~13.0.3",
"fast-text-encoding": "^1.0.6",
"geolib": "^3.3.4",
"i18n-js": "^3.5.1",
"lodash": "^4.17.20",
"polished": "^4.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.4",
"react-native": "0.74.2",
"react-native-anchor-point": "^1.0.2",
"react-native-device-info": "^10.2.1",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "~2.16.1",
"react-native-localize": "^1.4.2",
"react-native-reanimated": "~3.10.1",
"react-native-responsive-fontsize": "^0.5.0",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-share": "^10.0.2",
"react-native-svg": "15.2.0",
"react-native-version-check-expo": "^3.4.7",
"react-native-view-shot": "3.8.0",
"react-native-watch-connectivity": "^1.0.11",
"react-native-web": "~0.19.6",
"recoil": "^0.7.7",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@bufbuild/buf": "^1.40.1",
"@bufbuild/protobuf": "^1.10.0",
"@bufbuild/protoc-gen-es": "^1.7.2",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-web": "^1.4.0",
"@connectrpc/protoc-gen-connect-es": "^1.3.0",
"@connectrpc/protoc-gen-connect-query": "^1.4.2",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@testing-library/jest-native": "^4.0.11",
"@testing-library/react-native": "^11.0.0",
"@types/i18n-js": "^3.0.1",
"@types/jest": "^26.0.3",
"@types/lodash": "^4.14.161",
"@types/node": "^12.11.7",
"@types/react": "~18.2.79",
"@types/react-native-share": "^3.3.1",
"@types/react-native-version-check": "^3.4.8",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-expo": "~11.0.0",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^29.2.1",
"jest-expo": "~51.0.1",
"patch-package": "^8.0.0",
"prettier": "2.8.8",
"react-native-dotenv": "^3.4.8",
"typescript": "~5.3.3"
},
"private": true,
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
]
},
"name": "trainlcd",
"version": "1.0.0"
}