-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
89 lines (89 loc) · 3.91 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
{
"name": "expo-app",
"version": "1.0.25",
"dependencies": {
"@expo-google-fonts/inter": "^0.2.2",
"@expo/config": "^7.0.2",
"@expo/metro-config": "^0.3.21",
"@react-navigation/native": "^6.1.2",
"@react-navigation/native-stack": "^6.9.8",
"@tamagui/font-inter": "^1.7.2",
"app": "workspace:^",
"dotenv": "^16.0.3",
"expo": "~47.0.13",
"expo-constants": "~14.0.2",
"expo-dev-client": "~2.0.1",
"expo-font": "~11.0.1",
"expo-linear-gradient": "~12.0.1",
"expo-modules-autolinking": "~1.0.0",
"expo-screen-orientation": "~5.0.1",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"expo-updates": "~0.15.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-gesture-handler": "~2.8.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-svg": "13.4.0",
"react-native-web": "~0.18.7",
"ui": "workspace:^"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/runtime": "^7.18.9",
"@dmeents/semantic-release-yarn": "^1.1.2",
"@google/semantic-release-replace-plugin": "1.2.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@tamagui/babel-plugin": "1.7.2",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"babel-plugin-inline-dotenv": "^1.7.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"eslint": "^8.21.0",
"expo-cli": "^6.3.0",
"metro-minify-terser": "^0.74.1",
"prettier": "latest",
"semantic-release": "^20.1.0",
"semantic-release-monorepo": "^7.0.5",
"standard-version": "next",
"standard-version-expo": "^1.0.3",
"typescript": "^4.9.4"
},
"main": "index.ts",
"private": true,
"scripts": {
"build": "expo export",
"build:all:dev": "npx dotenv -c development -- eas build --profile development --platform all",
"build:all:preview": "npx dotenv -c preview -- eas build --profile preview --platform all",
"build:all:staging": "npx dotenv -c staging -- eas build --profile staging --platform all",
"build:android:dev": "npx dotenv -c development -- eas build --profile development --platform android",
"build:android:preview": "npx dotenv -c preview -- eas build --profile preview --platform android",
"build:android:staging": "npx dotenv -c staging -- eas build --profile staging --platform android",
"build:ios:dev": "npx dotenv -c development -- eas build --profile development --platform ios",
"build:ios:preview": "npx dotenv -c preview -- eas build --profile preview --platform ios",
"build:ios:staging": "npx dotenv -c staging -- eas build --profile staging --platform ios",
"fix:deps": "expo-cli doctor --fix-dependencies",
"format": "prettier --write \"**/*.{ts,tsx}\" --config ../../.prettierrc",
"format:check": "prettier -c \"**/*.{ts,tsx}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"semantic-release": "semantic-release -e semantic-release-monorepo",
"start": "npx expo start",
"start:android": "npx dotenv -c development -- npx expo run:android",
"start:android:prod": "npx dotenv -c production -- npx expo run:android --variant release",
"start:devclient": "npx dotenv -c development -- npx expo start --tunnel --dev-client --scheme dev.com.REPLACE-ME",
"start:ios": "npx dotenv -c development -- npx expo run:ios",
"start:ios:prod": "npx dotenv -c production -- npx expo run:ios --configuration Release",
"start:prod": "npx dotenv -c production -- npx expo start --no-dev --minify",
"start:tunnel": "npx dotenv -c development -- npx expo start --tunnel",
"typecheck": "tsc -b"
}
}