-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.62 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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "dooboo-starter",
"version": "0.0.1",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"start:prod": "STAGE=prod expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src app test",
"lint:i18n": "eslint --fix --ext .json --format node_modules/eslint-plugin-i18n-json/formatter.js assets/langs/",
"fix:deps": "expo install --fix",
"lint:all": "bun lint && bun lint:i18n",
"build:web": "expo export --platform web",
"test": "jest --runInBand"
},
"dependencies": {
"@emotion/native": "^11.11.0",
"@emotion/react": "^11.13.3",
"@expo/match-media": "^0.4.0",
"@expo/react-native-action-sheet": "^4.1.0",
"@react-native-async-storage/async-storage": "2.0.0",
"@react-native-community/datetimepicker": "8.2.0",
"@shopify/flash-list": "1.7.1",
"date-fns": "^4.1.0",
"dooboo-ui": "^0.2.38",
"expo": "~51.0.37",
"expo-constants": "~16.0.2",
"expo-device": "~6.0.2",
"expo-font": "~12.0.10",
"expo-image": "~1.13.0",
"expo-image-picker": "~15.0.7",
"expo-linear-gradient": "~13.0.2",
"expo-linking": "~6.3.1",
"expo-localization": "~15.0.3",
"expo-notifications": "~0.28.18",
"expo-router": "~3.5.23",
"expo-screen-orientation": "~7.0.5",
"expo-sharing": "~12.0.1",
"expo-splash-screen": "~0.27.6",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"expo-tracking-transparency": "~4.0.2",
"expo-updates": "~0.25.27",
"expo-web-browser": "~13.0.3",
"i18n-js": "4.4.3",
"lottie-react-native": "7.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "~0.75.4",
"react-native-error-boundary": "^1.2.5",
"react-native-gesture-handler": "~2.20.0",
"react-native-modal": "^13.0.1",
"react-native-pager-view": "6.4.1",
"react-native-parsed-text": "^0.0.22",
"react-native-reanimated": "~3.15.5",
"react-native-safe-area-context": "4.11.0",
"react-native-screens": "~3.34.0",
"react-native-svg": "15.7.1",
"react-native-tab-view": "^3.5.2",
"react-native-web": "~0.19.12",
"react-native-web-lottie": "^1.4.4",
"react-native-webview": "13.12.3"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@emotion/babel-plugin": "^11.12.0",
"@mmomtchev/expo-android-localized-app-name": "^1.0.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.7.2",
"@types/i18n-js": "^3.8.9",
"@types/jest": "^29.5.13",
"@types/react": "~18.3.11",
"ajv": "^8.17.1",
"babel-jest": "^29.7.0",
"commitlint-plugin-function-rules": "^4.0.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-expo": "^7.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-i18n-json": "^4.0.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-expo": "~51.0.4",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.3.3",
"react-test-renderer": "18.3.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"private": true,
"license": "UNLICENSED",
"expo": {
"install": {
"exclude": [
"react-native@~0.74.0",
"react-native-reanimated@~3.10.0",
"react-native-gesture-handler@~2.16.1",
"react-native-screens@~3.31.1"
]
}
}
}