-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.88 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
{
"name": "@safsbe/mental-health-app",
"main": "expo-router/entry",
"version": "0.1.0",
"scripts": {
"prepare": "husky",
"reset-project": "node ./scripts/reset-project.js",
"build:binary-images": "node ./scripts/generate-binary-images.mjs",
"android:build-article-assets": "mkdir android/app/src/main/assets && cp -r assets/articleAssets android/app/src/main/assets && cd android/app/src/main/assets && find -iname '*.html' -type f | xargs -I{} sed -i -e 's@src=\"../../assets@src=\"file:///android_asset@' -e 's@src=\"assets@src=\"file:///android_asset@' '{}'",
"prebuild:common": "npm run build:binary-images",
"preprebuild:android": "npm run prebuild:common",
"prebuild:android": "expo prebuild --clean --platform=android && npm run android:build-article-assets",
"prebuild:android:aab": "npm run prebuild:android",
"build:android:aab": "react-native build-android --mode=release",
"prebuild:android:apk": "npm run prebuild:android",
"build:android:apk": "cd android && ./gradlew assembleRelease",
"prewatch:common": "npm run prebuild:common",
"prewatch:android": "npm run prewatch:common && npm run prebuild:android",
"watch:android": "expo run:android",
"prewatch:ios": "npm run prewatch:common",
"watch:ios": "expo run:ios",
"watch:ios:device": "expo run:ios --device",
"prewatch:web": "npm run prewatch:common",
"watch:web": "expo start --web",
"test": "jest",
"test:watch": "jest --watchAll",
"eslint": "eslint .",
"eslint:fix": "npm run eslint -- --fix",
"prettier:cli": "prettier '**/*.md' '**/*.ts' '**/*.tsx' '**/*.js' '**/*.mjs' '!assets/**'",
"prettier:check": "npm run prettier:cli -- --check",
"prettier:fix": "npm run prettier:cli -- --write",
"lint:check": "npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"android": "expo run:android",
"ios": "expo run:ios"
},
"dependencies": {
"@expo-google-fonts/mulish": "^0.2.3",
"@expo/vector-icons": "^14.0.3",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-community/slider": "4.5.2",
"@react-navigation/drawer": "^6.7.2",
"@react-navigation/native": "^6.0.2",
"date-fns": "^4.1.0",
"expo": "~51.0.28",
"expo-av": "~14.0.7",
"expo-build-properties": "~0.12.5",
"expo-constants": "~16.0.2",
"expo-font": "~12.0.9",
"expo-image": "~1.12.15",
"expo-linking": "~6.3.1",
"expo-router": "~3.5.23",
"expo-screen-orientation": "~7.0.5",
"expo-secure-store": "~13.0.2",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"expo-web-browser": "~13.0.3",
"moment": "^2.30.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-calendars": "^1.1307.0",
"react-native-drawer-layout": "^3.3.2",
"react-native-gesture-handler": "~2.16.1",
"react-native-pager-view": "^6.4.1",
"react-native-reanimated": "3.16.0",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-web": "~0.19.10",
"react-native-webview": "13.12.5",
"expo-dev-client": "~4.0.29"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.45",
"@types/react-test-renderer": "^18.0.7",
"eslint": "^8.57.0",
"eslint-config-expo": "^7.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"expo-doctor": "^1.10.1",
"husky": "^9.1.6",
"jest": "^29.2.1",
"jest-expo": "~51.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"react-test-renderer": "18.2.0",
"sharp": "^0.33.5",
"typescript": "~5.3.3"
},
"private": true
}