-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 2.56 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
{
"name": "reactnativenextjstemplate",
"description": "Build native apps (iOS/Android/Windows/macOS) and an SEO-optimized web app from the same React codebase",
"license": "ISC",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"upgrade-expo": "yarn global add eas-cli; npx expo install --fix; npx expo-doctor",
"dev": "yarn start",
"dev:next": "next dev --port 3005",
"start": "expo start --port 19005",
"start:next": "next start",
"eject": "expo eject",
"test": "echo 'Running Standard.js and Jasmine unit tests...\n' && yarn lint && yarn unit",
"unit": "babel-node spec/run.js",
"lint": "ts-standard",
"fix": "ts-standard --fix",
"pub": "eas update --branch main",
"build": "next build",
"build:web:old": "npx expo export:web && cd web-build && vercel --prod",
"build:ios": "eas build --profile production --platform ios --auto-submit",
"submit:ios": "eas submit --platform ios --latest",
"build:android": "eas build --profile production --platform android",
"submit:android": "eas submit --platform android --latest",
"new:s": "cp screens/NotFoundScreen.tsx screens/NewScreen.tsx; echo \"Now rename file 'screens/NewScreen.tsx' to whatever you want.\"",
"new:c": "cp components/common/Centered.tsx components/common/New.tsx; echo \"Now rename/move 'components/common/New.tsx' to whatever you want.\"",
"new:n": "cp navigation/OnboardingStackNavigator.tsx navigation/NewStackNavigator.tsx; echo \"Now rename/move 'navigation/NewStackNavigator.tsx' to whatever you want.\"",
"api": "eval $(grep '^SUPABASE_URL' .env.local) && eval $(grep '^SUPABASE_API_KEY' .env.local) && npx [email protected] ${SUPABASE_URL}/rest/v1/?apikey=${SUPABASE_API_KEY} --output types/supabase.ts"
},
"ts-standard": {
"ignore": [
"next-env.d.ts",
"types/*"
],
"globals": [
"expect",
"it"
]
},
"dependencies": {
"@expo/webpack-config": "^19.0.0",
"expo": "^50.0.0",
"expo-build-properties": "~0.8.3",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.24.12",
"next": "^13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.4",
"react-native-svg": "13.9.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-toast-notifications": "^3.4.0",
"react-native-web": "~0.19.6"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@expo/next-adapter": "^5.0.2",
"@types/react": "~18.2.14",
"@types/react-native": "^0.71.5",
"ts-standard": "^12.0.2",
"typescript": "^5.1.3"
},
"private": true
}