-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.69 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
{
"name": "daily-questions",
"version": "1.0.0",
"license": "MIT",
"main": "index.js",
"author": "Mirco Kraenz",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "expo start --dev-client",
"eas:build": "tsc --noEmit && eas build --platform android",
"eas:submit": "eas submit --platform android",
"dev": "expo start",
"dev:clear-cache": "expo start --clear",
"build:local": "ANDROID_SDK_ROOT=~/Android/Sdk expo run:android",
"compile": "tsc",
"compile:watch": "tsc -w",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"pregenerate:used-licenses": "mkdir -p ./src/generated",
"generate:used-licenses": "license-report --output=json --config license-report.config.json --only=prod > ./src/generated/prod-licenses.json"
},
"dependencies": {
"@expo/vector-icons": "^14.0.0",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-native-community/datetimepicker": "7.6.1",
"@react-navigation/drawer": "^6.6.6",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"@reduxjs/toolkit": "^1.9.3",
"expo": "^50.0.0",
"expo-clipboard": "~5.0.1",
"expo-constants": "~15.4.5",
"expo-crypto": "~12.8.0",
"expo-localization": "~14.8.3",
"expo-notifications": "~0.27.4",
"expo-permissions": "~14.2.1",
"expo-splash-screen": "~0.26.3",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "~2.9.3",
"expo-updates": "~0.24.8",
"fuse.js": "^7.0.0",
"i18next": "^23.7.17",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^14.0.1",
"react-native": "0.73.2",
"react-native-chart-kit": "^6.12.0",
"react-native-draggable-flatlist": "^4.0.1",
"react-native-gesture-handler": "~2.14.0",
"react-native-paper": "^5.12.1",
"react-native-reanimated": "~3.6.0",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-svg": "14.1.0",
"react-native-vector-icons": "^10.0.3",
"react-native-web": "~0.19.6",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@expo/metro-runtime": "^3.1.1",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/react": "~18.2.14",
"@types/redux-persist": "^4.3.1",
"babel-preset-expo": "^10.0.0",
"eas-cli": "^7.0.0",
"jest": "^29.7.0",
"jest-expo": "~50.0.1",
"license-report": "^6.5.0",
"typescript": "^5.1.3"
},
"jest": {
"preset": "jest-expo"
},
"private": true
}