-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "reactnative-nextjs-template",
"description": "Build native apps (iOS/Android/Windows/macOS) and an SEO-optimized web app from the same React codebase",
"version": "0.2.0",
"author": "Tom Söderlund <tom@tomsoderlund.com>",
"license": "ISC",
"scripts": {
"dev": "next dev -p 3005",
"dev:native": "expo start --port 19005",
"build": "next build",
"start": "next start",
"dev:android": "expo start --android",
"dev:ios": "expo start --ios",
"web": "next",
"web:native": "expo start --web",
"eject:web": "next-expo customize",
"eject:native": "expo eject",
"lint": "standard",
"fix": "standard --fix"
},
"dependencies": {
"expo": "^47.0.0",
"expo-av": "^13.0.2",
"next": "~13.1.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-elements": "^3.4.3",
"react-native-safe-area-context": "^4.4.1",
"react-native-vector-icons": "^9.2.0",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@expo/next-adapter": "^5.0.0",
"standard": "^16.0.3"
}
}