-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
133 lines (133 loc) · 5.05 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
124
125
126
127
128
129
130
131
132
133
{
"name": "pixel-tracker",
"version": "1.62.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start --dev-client",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll --env=jsdom",
"test:ci": "jest --env=jsdom",
"disclaimer": "echo \"export default \\`$(yarn licenses generate-disclaimer | sed 's/\\`/\\\\`/g')\\`\" > disclaimer.js",
"bump": "npx standard-version",
"build:ios:dev": "npx eas-cli build -p ios --local --profile=development",
"build:android:dev": "npx eas-cli build -p android --local --profile=development",
"build:ios:preview": "npx eas-cli build -p ios --local --profile=preview",
"build:android:preview": "npx eas-cli build -p android --local --profile=preview",
"buiild:ios:prod": "npx eas-cli build -p ios --local --profile=production --non-interactive",
"build:android:prod": "npx eas-cli build -p android --local --profile=production --non-interactive",
"submit:preview": "npx eas-cli submit -p android --path $(ls -t *.aab | head -1) && npx eas-cli submit -p ios --path $(ls -t *.ipa | head -1)",
"submit:prod": "npx eas-cli submit -p android --path $(ls -t *.aab | head -1) && npx eas-cli submit -p ios --path $(ls -t *.ipa | head -1)",
"build:preview": "yarn build:ios:preview && yarn build:android:preview",
"build:prod": "yarn build:ios:prod && yarn build:android:prod",
"publish:preview": "npx eas-cli build -p all --profile=preview --auto-submit",
"publish:prod": "npx eas-cli build -p all --local --profile=production --auto-submit",
"translate-app": "node scripts/generate-translations-app.js",
"type-check": "tsc"
},
"jest": {
"preset": "jest-expo",
"testPathIgnorePatterns": [
"./__tests__/utils.ts"
],
"collectCoverage": false,
"collectCoverageFrom": [
"./hooks/*.{js,jsx,ts,tsx}",
"./helpers/*.{js,jsx,ts,tsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
]
},
"dependencies": {
"@expo/webpack-config": "^0.17.0",
"@gorhom/bottom-sheet": "^4",
"@legendapp/motion": "^2.2.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/datetimepicker": "6.2.0",
"@react-native-community/hooks": "^2.8.1",
"@react-navigation/bottom-tabs": "^6.3.1",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.1.0",
"@sentry/react-native": "4.2.2",
"chroma-js": "^2.4.2",
"dayjs": "^1.10.7",
"expo": "^46.0.0",
"expo-app-loading": "~2.1.0",
"expo-application": "~4.2.2",
"expo-asset": "~8.6.1",
"expo-constants": "~13.2.4",
"expo-dev-client": "~1.3.1",
"expo-device": "~4.3.0",
"expo-document-picker": "~10.3.0",
"expo-file-system": "~14.1.0",
"expo-font": "~10.2.0",
"expo-haptics": "~11.3.0",
"expo-linear-gradient": "~11.4.0",
"expo-linking": "~3.2.2",
"expo-local-authentication": "~12.3.0",
"expo-localization": "~13.1.0",
"expo-notifications": "~0.16.1",
"expo-sharing": "~10.3.0",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"expo-store-review": "~5.3.0",
"expo-updates": "~0.14.7",
"expo-web-browser": "~11.0.0",
"i18n-js": "^3.8.0",
"jotai": "^1.8.5",
"lodash": "^4.17.21",
"onesignal-expo-plugin": "^1.1.2",
"posthog-react-native": "^2.1.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.6",
"react-native-feather": "^1.1.2",
"react-native-gesture-handler": "~2.5.0",
"react-native-get-random-values": "~1.8.0",
"react-native-linear-gradient": "^2.6.2",
"react-native-markdown-display": "^7.0.0-alpha.2",
"react-native-modal-datetime-picker": "^14.0.0",
"react-native-onesignal": "^4.4.1",
"react-native-reanimated": "~2.9.1",
"react-native-reanimated-carousel": "^3.0.5",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-style-utilities": "^1.0.1",
"react-native-svg": "12.3.0",
"react-native-view-shot": "3.3.0",
"react-native-web": "~0.18.7",
"semver": "^7.3.8",
"sentry-expo": "~5.0.0",
"use-debounce": "^7.0.1",
"uuid": "^8.3.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@expo/config-types": "^46.0.2",
"@google-cloud/translate": "^6.3.1",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/react-native": "^9.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/i18n-js": "^3.8.2",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.180",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"@types/uuid": "^8.3.4",
"jest": "^26.6.3",
"jest-expo": "^46.0.0",
"mockdate": "^3.0.5",
"sharp": "^0.30.5",
"typescript": "^4.6.3"
},
"private": true
}