-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.94 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
{
"name": "app-tech-test-2627",
"version": "0.0.1",
"private": true,
"main": "index.tsx",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"bundle:web": "npx expo export --platform web",
"serve:web": "npx serve dist",
"prebuild:clean": "npx expo prebuild --clean",
"compile": "tsc --noEmit -p . --pretty",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"depcruise": "depcruise app --config .dependency-cruiser.js",
"depcruise:graph": "depcruise app --include-only \"^app\" --config .dependency-cruiser.js --output-type dot > app-dependency-graph.dot && dot -T svg app-dependency-graph.dot -o app-dependency-graph.svg && dot -T png app-dependency-graph.dot -o app-dependency-graph.png && rm app-dependency-graph.dot",
"align-deps": "npx expo install --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:maestro": "maestro test -e MAESTRO_APP_ID=com.usthing.apptechtest27 .maestro/flows",
"adb": "adb reverse tcp:9090 tcp:9090 && adb reverse tcp:3000 tcp:3000 && adb reverse tcp:9001 tcp:9001 && adb reverse tcp:8081 tcp:8081",
"build:ios:sim": "eas build --profile development --platform ios --local",
"build:ios:device": "eas build --profile development:device --platform ios --local",
"build:ios:preview": "eas build --profile preview --platform ios --local",
"build:ios:prod": "eas build --profile production --platform ios --local",
"build:android:sim": "eas build --profile development --platform android --local",
"build:android:device": "eas build --profile development:device --platform android --local",
"build:android:preview": "eas build --profile preview --platform android --local",
"build:android:prod": "eas build --profile production --platform android --local"
},
"dependencies": {
"@expo-google-fonts/space-grotesk": "^0.4.0",
"@expo/metro-runtime": "~55.0.6",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/native-stack": "^7.2.0",
"apisauce": "3.1.1",
"date-fns": "^4.1.0",
"expo": "~55.0.31",
"expo-application": "~55.0.8",
"expo-build-properties": "~55.0.9",
"expo-dev-client": "~55.0.11",
"expo-font": "~55.0.4",
"expo-linking": "~55.0.7",
"expo-localization": "~55.0.8",
"expo-splash-screen": "~55.0.10",
"expo-system-ui": "~55.0.9",
"i18next": "^23.14.0",
"intl-pluralrules": "^2.0.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-i18next": "^15.0.1",
"react-native": "0.83.10",
"react-native-drawer-layout": "^4.0.1",
"react-native-edge-to-edge": "~1.6.1",
"react-native-gesture-handler": "~2.30.0",
"react-native-keyboard-controller": "1.20.7",
"react-native-mmkv": "3.3.3",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.7.4",
"setimmediate": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@testing-library/react-native": "^13.2.0",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.10",
"babel-jest": "^29.2.1",
"dependency-cruiser": "^17.0.2",
"eslint": "^8.57.0",
"eslint-config-expo": "~55.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-reactotron": "^0.1.2",
"jest": "~29.7.0",
"jest-expo": "~55.0.9",
"prettier": "^3.3.3",
"react-test-renderer": "19.2.0",
"reactotron-core-client": "^2.9.4",
"reactotron-react-js": "^3.3.11",
"reactotron-react-native": "^5.0.5",
"reactotron-react-native-mmkv": "^0.2.6",
"ts-jest": "^29.1.1",
"tsx": "^4.20.3",
"typescript": "~5.9.2"
},
"engines": {
"node": ">=20.0.0"
}
}