-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.79 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
{
"name": "exponent",
"main": "expo-router/entry",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"start": "expo start",
"ios": "expo run:ios",
"android": "expo run:android",
"web": "expo start --web",
"prebuild": "expo prebuild --clean",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"spellcheck": "cspell lint --quiet .",
"typecheck": "tsc",
"i18n:extract": "lingui extract",
"clean": "git clean -xdf .expo ios android dist",
"nuke": "git clean -xdf .expo ios android dist node_modules"
},
"dependencies": {
"@clerk/clerk-expo": "^2.7.5",
"@expo/vector-icons": "^14.0.4",
"@lingui/react": "^5.2.0",
"@react-navigation/native": "^7.0.14",
"clsx": "^2.1.1",
"expo": "~52.0.30",
"expo-blur": "~14.0.3",
"expo-constants": "~17.0.5",
"expo-dev-client": "~5.0.11",
"expo-font": "~13.0.3",
"expo-haptics": "~14.0.1",
"expo-linking": "~7.0.5",
"expo-localization": "~16.0.1",
"expo-router": "~4.0.17",
"expo-secure-store": "^14.0.1",
"expo-splash-screen": "~0.29.21",
"expo-status-bar": "~2.0.1",
"expo-symbols": "~0.2.2",
"expo-system-ui": "~4.0.7",
"expo-web-browser": "~14.0.2",
"nativewind": "^4.1.23",
"react": "18.3.1",
"react-compiler-runtime": "^19.0.0-beta-e552027-20250112",
"react-dom": "18.3.1",
"react-native": "0.76.6",
"react-native-gesture-handler": "~2.20.2",
"react-native-reanimated": "~3.16.7",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-web": "~0.19.13",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@lingui/babel-plugin-lingui-macro": "^5.2.0",
"@lingui/cli": "^5.2.0",
"@lingui/metro-transformer": "^5.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@types/react": "~18.3.18",
"@types/react-test-renderer": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"cspell": "^8.17.3",
"eslint": "^8.57.1",
"eslint-config-expo": "~8.0.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-lingui": "^0.10.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"eslint-plugin-tailwindcss": "^3.18.0",
"expo-atlas": "^0.4.0",
"jest": "^29.7.0",
"jest-expo": "~52.0.3",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-test-renderer": "18.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
}
}