forked from mrzmyr/pixy-mood-tracker-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.86 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.86 KB
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
{
"name": "pixel-tracker",
"version": "1.86.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "export NODE_OPTIONS=--openssl-legacy-provider && 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",
"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",
"build:ios:prod": "npx eas-cli build -p ios --local --profile=production",
"build:android:prod": "npx eas-cli build -p android --local --profile=production",
"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",
"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": "^18.0.4",
"@gorhom/bottom-sheet": "^4",
"@legendapp/motion": "^2.2.0",
"@react-native-async-storage/async-storage": "~1.17.11",
"@react-native-community/datetimepicker": "6.7.3",
"@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.9.7",
"@sentry/react-native": "4.13.0",
"chroma-js": "^2.4.2",
"dayjs": "^1.11.7",
"expo": "^48.0.18",
"expo-app-loading": "~2.1.0",
"expo-application": "~5.1.1",
"expo-asset": "~8.9.1",
"expo-constants": "~14.2.1",
"expo-dev-client": "~2.2.1",
"expo-device": "~5.2.1",
"expo-document-picker": "~11.2.2",
"expo-file-system": "~15.2.2",
"expo-font": "~11.1.1",
"expo-haptics": "~12.2.1",
"expo-linear-gradient": "~12.1.2",
"expo-linking": "~4.0.1",
"expo-local-authentication": "~13.3.0",
"expo-localization": "~14.1.1",
"expo-notifications": "~0.18.1",
"expo-sharing": "~11.2.2",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-store-review": "~6.2.1",
"expo-updates": "~0.16.4",
"expo-web-browser": "~12.1.1",
"i18n-js": "^3.8.0",
"jotai": "^2.0.2",
"lodash": "^4.17.21",
"lucide-react-native": "^0.104.0",
"posthog-react-native": "^2.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.8",
"react-native-feather": "^1.1.2",
"react-native-gesture-handler": "~2.9.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-reanimated": "~2.14.4",
"react-native-reanimated-carousel": "^3.3.0",
"react-native-rss-parser": "^1.5.1",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-style-utilities": "^1.0.1",
"react-native-svg": "13.4.0",
"react-native-view-shot": "3.5.0",
"react-native-web": "~0.18.10",
"semver": "^7.5.2",
"sentry-expo": "~6.1.0",
"use-debounce": "^9.0.4",
"uuid": "^9.0.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@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": "^14.0.0",
"@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.195",
"@types/react": "~18.0.27",
"@types/react-native": "~0.69.1",
"@types/uuid": "^8.3.4",
"jest": "^29.2.1",
"jest-expo": "^46.0.0",
"mockdate": "^3.0.5",
"sharp": "^0.31.2",
"typescript": "^4.9.4"
},
"private": true
}