-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.73 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
{
"name": "freetogame",
"version": "0.0.1",
"private": true,
"main": "index.js",
"scripts": {
"android": "expo run:android",
"android-release": "expo start --android --variant release",
"android:storybook": "STORYBOOK_ENABLED=true expo run:android",
"android-dark-theme": "adb shell 'cmd uimode night yes'",
"android-light-theme": "adb shell 'cmd uimode night no'",
"ios": "expo run:ios",
"ios-release": "expo start --ios --simulator=\"iPhone 14 Pro Max\" --configuration Release",
"ios:storybook": "STORYBOOK_ENABLED=true expo run:ios",
"ipados": "expo start --ios --simulator=\"iPad Air\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier:fix": "prettier --write . --ignore-unknown",
"start": "expo start",
"prepare": "husky",
"storybook-generate": "sb-rn-get-stories"
},
"dependencies": {
"@react-navigation/native": "^7.0.3",
"@react-navigation/native-stack": "^7.0.3",
"@sentry/react-native": "~6.1.0",
"@shopify/flash-list": "1.7.1",
"@tanstack/react-query": "^5.60.5",
"axios": "^1.7.7",
"expo": "^52.0.7",
"expo-constants": "~17.0.3",
"expo-font": "~13.0.1",
"expo-image": "~2.0.0",
"expo-linear-gradient": "~14.0.1",
"expo-status-bar": "~2.0.0",
"react": "18.3.1",
"react-native": "0.76.2",
"react-native-error-boundary": "^1.2.5",
"react-native-paper": "^5.12.5",
"react-native-responsive-scalability": "^1.2.0",
"react-native-responsive-screen": "^1.4.2",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.0.0",
"react-native-shimmer-placeholder": "^2.0.9",
"zustand": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@gorhom/bottom-sheet": "^5.0.5",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-community/slider": "4.5.5",
"@storybook/addon-ondevice-actions": "^8.4.2",
"@storybook/addon-ondevice-backgrounds": "^8.4.2",
"@storybook/addon-ondevice-controls": "^8.4.2",
"@storybook/addon-ondevice-notes": "^8.4.2",
"@storybook/react-native": "^8.4.2",
"@testing-library/react-native": "^12.8.1",
"@types/jest": "^29.5.14",
"@types/react": "~18.3.12",
"babel-loader": "^9.2.1",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.0",
"husky": "^9.1.6",
"jest": "^29.3.1",
"jest-expo": "~52.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"react-dom": "18.3.1",
"react-native-gesture-handler": "~2.20.2",
"react-native-reanimated": "~3.16.1",
"react-native-svg": "15.8.0",
"typescript": "~5.3.3"
}
}