-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.35 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
{
"name": "template-react-native-expo",
"version": "0.0.0",
"main": "expo-router/entry",
"private": true,
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"prepare": "husky",
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"clean:folders": "rm -rf ios && rm -rf android",
"format:check": "prettier --check '**/*.{ts,tsx,md,json}'",
"format:fix": "prettier --write '**/*.{ts,tsx,md,json}'",
"lint": "eslint --cache --concurrency=auto",
"spellcheck": "cspell --no-progress --gitignore **/*.{js,ts,tsx,json,md}",
"test": "jest",
"lint:fix": "eslint --cache --concurrency=auto --fix",
"type:check": "tsc"
},
"dependencies": {
"@react-native-community/netinfo": "11.5.2",
"expo": "^55.0.5",
"expo-asset": "~55.0.8",
"expo-build-properties": "~55.0.9",
"expo-constants": "~55.0.7",
"expo-dev-client": "~55.0.11",
"expo-font": "~55.0.4",
"expo-image": "~55.0.6",
"expo-linking": "~55.0.7",
"expo-router": "~55.0.4",
"expo-splash-screen": "~55.0.10",
"expo-status-bar": "~55.0.4",
"expo-system-ui": "~55.0.9",
"expo-updates": "~55.0.12",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-gesture-handler": "~2.30.0",
"react-native-mmkv": "~4.2.0",
"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.2",
"react-native-worklets": "0.7.2",
"semver": "^7.7.4"
},
"devDependencies": {
"@dev-plugins/react-native-mmkv": "~0.4.0",
"@release-it/conventional-changelog": "^10.0.5",
"@strv/eslint-config-react-native": "^4.1.0",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.14",
"@types/semver": "^7.7.1",
"cspell": "^9.7.0",
"dotenv": "^17.3.1",
"eas-build-cache-provider": "^18.0.2",
"eslint": "^9.39.1",
"eslint-plugin-testing-library": "^7.16.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-expo": "^55.0.9",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"react-test-renderer": "19.2.0",
"release-it": "^19.2.4",
"release-it-webhook": "^0.0.6",
"typescript": "~5.9.3"
}
}