forked from EvanBacon/evanbacon.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.02 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
{
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"build": "next build",
"optimize": "rm -rf out; npx expo-optimize",
"build:web": "next build && next export",
"predeploy:web": "yarn run optimize && yarn run build:web",
"deploy:web": "netlify deploy --dir out --prod"
},
"dependencies": {
"@expo/html-elements": "^0.0.0-alpha.3",
"@expo/react-native-action-sheet": "^3.5.0",
"@react-native-community/masked-view": "^0.1.5",
"expo": "~36.0.2",
"expo-av": "^8.0.0",
"expo-blur": "^8.0.0",
"expo-dark-mode-switch": "^0.0.1",
"expo-linear-gradient": "^8.0.0",
"expo-next-react-navigation": "^0.0.23",
"next": "^9.1.6",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
"react-native-appearance": "^0.3.2",
"react-native-extended-stylesheet": "^0.12.0",
"react-native-gesture-handler": "^1.5.3",
"react-native-reanimated": "^1.4.0",
"react-native-safe-area-context": "0.6.0",
"react-native-svg": "9.13.3",
"react-native-typography": "^1.4.1",
"react-native-web": "~0.11.7",
"react-native-web-hooks": "^3.0.1",
"react-navigation": "^4.0.10",
"react-navigation-drawer": "^2.3.3",
"react-navigation-stack": "^2.0.12",
"react-navigation-tabs": "^2.7.0",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@expo/next-adapter": "^2.0.14",
"@types/react": "~16.9.0",
"@types/react-native": "~0.60.23",
"eslint": "^6.8.0",
"eslint-config-universe": "^2.1.0",
"expo-module-scripts": "^1.1.1",
"next-compose-plugins": "^2.2.0",
"next-fonts": "^0.19.0",
"next-images": "^1.2.0",
"next-transpile-modules": "^2.3.1",
"next-videos": "^1.1.3",
"prettier": "^1.19.1",
"typescript": "~3.6.3"
},
"private": true
}