-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.19 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
{
"main": "node_modules/expo/AppEntry.js",
"homepage": "https://osumc-cultural-awareness.github.io/app/",
"scripts": {
"start": "yarn env:dev && expo start",
"env:dev": "node script/setup-envs.js development",
"env:prod": "node script/setup-envs.js production",
"android": "yarn env:dev && expo start --android",
"ios": "yarn env:dev && expo start --ios",
"web": "yarn env:dev && expo start --web",
"eject": "expo eject",
"test": "jest",
"deploy": "gh-pages -d web-build",
"predeploy": "yarn env:prod && expo build:web"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.2",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/material-top-tabs": "^5.3.8",
"@react-navigation/native": "^5.7.6",
"@react-navigation/stack": "^5.9.3",
"@types/pako": "^1.0.1",
"@types/react-native": "^0.63.30",
"@types/react-redux": "^7.1.11",
"@types/yup": "^0.29.9",
"dayjs": "^1.9.6",
"expo": "~39.0.2",
"expo-status-bar": "^1.0.2",
"formik": "^2.2.5",
"pako": "^1.0.11",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.3.tar.gz",
"react-native-gesture-handler": "~1.7.0",
"react-native-paper": "^4.3.0",
"react-native-reanimated": "~1.13.0",
"react-native-screens": "~2.10.1",
"react-native-tab-view": "^2.15.2",
"react-native-web": "~0.13.7",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"yup": "^0.30.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.16",
"@types/react-test-renderer": "^17.0.0",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-jest": "^26.6.3",
"coveralls": "^3.1.0",
"eslint": "^7.15.0",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"jest-expo": "^39.0.0",
"prettier": "^2.2.0",
"react-test-renderer": "^17.0.1",
"redux-mock-store": "^1.5.4",
"typescript": "^4.1.2",
"wait-for-expect": "^3.0.2"
},
"private": true
}