-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.67 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
67
68
69
70
71
72
73
74
75
76
77
{
"repository": "https://github.com/jtaylorchang/kappa-mobile.git",
"author": "Jeff Taylor-Chang <jeff@jefftc.com>",
"license": "GPL-2.0-only",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"deploy": "expo publish",
"validate": "npx tsc --noEmit",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"buildios": "expo build:ios",
"buildiossim": "expo build:ios -t simulator",
"uploadios": "expo upload:ios",
"fixsim": "xattr -cr kappa-theta-tau.app",
"installsim": "xcrun simctl install booted kappa-theta-tau.app",
"launchsim": "xcrun simctl launch booted kappa-theta-tau.app",
"installandroid": "adb install-multiple ./*",
"eslint": "eslint --config ./.eslintrc.json --ext .js,.ts,.jsx,.tsx src/"
},
"dependencies": {
"@expo/vector-icons": "^10.0.0",
"@react-native-community/datetimepicker": "3.0.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.8.0",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"expo": "^39.0.0",
"expo-app-auth": "~9.2.0",
"expo-asset": "~8.2.0",
"expo-barcode-scanner": "~9.0.0",
"expo-constants": "~9.2.0",
"expo-font": "~8.3.0",
"expo-google-app-auth": "^8.0.1",
"expo-haptics": "~8.3.0",
"expo-secure-store": "~9.2.0",
"expo-updates": "~0.3.3",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.0.tar.gz",
"react-native-appearance": "~0.3.3",
"react-native-gesture-handler": "~1.7.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.4",
"react-native-screens": "~2.10.1",
"react-native-status-bar-height": "^2.4.0",
"react-native-svg": "12.1.0",
"react-native-svg-charts": "^5.3.0",
"react-redux": "^7.1.3",
"reanimated-bottom-sheet": "^1.0.0-alpha.19",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"rn-placeholder": "^3.0.0",
"sentry-expo": "^3.0.3"
},
"devDependencies": {
"@types/node": "^13.9.1",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-redux": "^7.1.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-preset-expo": "^8.3.0",
"eslint": "^6.8.0",
"eslint-config-universe": "^3.0.0",
"eslint-plugin-react-hooks": "^3.0.0",
"prettier": "^2.0.5",
"typescript": "~3.9.2"
},
"private": true
}