-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.93 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
{
"name": "notes-expo-app",
"version": "1.0.0",
"description": "📝 Tiny Expo app for taking notes that is using Parse Platform as BaaS solution hosted on the local machine or cloud.",
"license": "MIT",
"author": "Batyr <[email protected]>",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"p:web": "expo build:web && cd web-build && vercel --prod && cd ..",
"p:app": "expo p",
"p:all": "yarn p:app && yarn p:web",
"release": "dotenv release-it"
},
"dependencies": {
"@emotion/native": "^11.0.0",
"@emotion/react": "^11.1.5",
"@kanzitelli/if-component": "^0.0.1",
"@react-native-async-storage/async-storage": "^1.13.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.11.9",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.3",
"expo": "^41.0.0",
"expo-localization": "~10.1.0",
"expo-status-bar": "~1.0.4",
"formik": "^2.2.6",
"i18n-js": "^3.8.0",
"mobx": "^6.2.0",
"mobx-persist-store": "^0.5.30",
"mobx-react": "^7.1.0",
"parse": "^3.2.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz",
"react-native-gesture-handler": "~1.10.2",
"react-native-reanimated": "~2.1.0",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "^3.1.1",
"react-native-web": "~0.13.12",
"react-navigation-stack": "react-navigation/stack"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@types/i18n-js": "^3.8.0",
"@types/parse": "^2.18.5",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@types/react-native": "~0.63.2",
"dotenv-cli": "^4.0.0",
"release-it": "^14.4.1",
"typescript": "~4.0.0"
}
}