forked from LunatiqueCoder/expotamagui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.65 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
{
"name": "expotamagui",
"private": true,
"version": "1.0.0",
"author": "Ovidiu Cristescu <cristee95@gmail.com>",
"license": "MIT",
"main": "expo-router/entry",
"scripts": {
"start": "expo start --clear",
"android": "expo run:android",
"ios": "expo run:ios",
"export": "expo export",
"export:web": "expo export --platform web",
"lint:all": "yarn lint:eslint && yarn lint:prettier && yarn lint:types",
"lint:eslint": "eslint src/",
"lint:eslint:fix": "eslint --fix src/",
"lint:prettier": "prettier --check \"src/**/*.+(js|jsx|ts|tsx|json|css|md)\"",
"lint:prettier:fix": "prettier --write \"src/**/*.+(js|jsx|ts|tsx|json|css|md)\"",
"lint:types": "tsc"
},
"resolutions": {
"@radix-ui/react-slot": "1.0.1",
"react-refresh": "~0.14.0"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.18.2",
"@react-navigation/drawer": "~6.6.4",
"@tamagui/animations-moti": "~1.74.11",
"@tamagui/babel-plugin": "~1.74.11",
"@tamagui/font-inter": "~1.74.11",
"@tamagui/font-silkscreen": "~1.74.11",
"@tamagui/lucide-icons": "~1.74.11",
"@tamagui/shorthands": "~1.74.11",
"@tamagui/themes": "~1.74.11",
"@tamagui/web": "~1.74.11",
"burnt": "~0.11.7",
"expo": "^49.0.13",
"expo-auth-session": "~5.0.2",
"expo-build-properties": "~0.8.3",
"expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.11",
"expo-font": "~11.4.0",
"expo-image": "~1.3.4",
"expo-linear-gradient": "~12.3.0",
"expo-linking": "~5.0.2",
"expo-router": "2.0.0",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-system-ui": "^2.4.0",
"expo-updates": "~0.18.16",
"react": "18.2.0",
"react-dom": "~18.2.0",
"react-native": "^0.72.5",
"react-native-gesture-handler": "~2.12.0",
"react-native-ios-modal": "~0.1.8",
"react-native-pager-view": "6.2.0",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-tab-view": "~3.5.2",
"react-native-web": "~0.19.9",
"sass": "~1.69.0",
"tamagui": "~1.74.11"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@react-native/eslint-config": "^0.72.2",
"@types/node": "^20.4.1",
"@types/react": "~18.2.14",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"eslint": "^8.38.0",
"metro-react-native-babel-transformer": "^0.76.7",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typescript": "^5.1.3"
}
}