-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
116 lines (116 loc) · 3.39 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "lynbrook-app",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "jest --watchAll",
"test:ci": "jest --ci --passWithNoTests",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@kichiyaki/react-native-barcode-generator": "^0.6.7",
"@react-native-community/netinfo": "9.3.0",
"@react-native-masked-view/masked-view": "0.2.7",
"@react-navigation/bottom-tabs": "^6.3.3",
"@react-navigation/native": "^6.0.12",
"@react-navigation/native-stack": "^6.8.0",
"@react-navigation/stack": "^6.2.3",
"date-fns": "^2.23.0",
"expo": "^46.0.0",
"expo-application": "~4.2.2",
"expo-asset": "~8.6.1",
"expo-auth-session": "~4.0.3",
"expo-barcode-scanner": "~11.4.0",
"expo-camera": "~12.3.0",
"expo-constants": "~13.2.3",
"expo-device": "~4.3.0",
"expo-file-system": "~14.1.0",
"expo-font": "~10.2.0",
"expo-image-picker": "~13.3.1",
"expo-linking": "~3.2.2",
"expo-media-library": "~14.2.0",
"expo-notifications": "~0.16.1",
"expo-random": "~12.3.0",
"expo-secure-store": "~11.3.0",
"expo-splash-screen": "~0.16.1",
"expo-status-bar": "~1.4.0",
"expo-system-ui": "~1.3.0",
"expo-updates": "^0.14.5",
"expo-web-browser": "~11.0.0",
"formik": "^2.2.9",
"jest": "^29.0.1",
"lynbrook-app-api-hooks": "github:lynbrookhs/lynbrook-app-api-hooks",
"node-ical": "github:lynbrookhs/node-ical",
"path": "^0.12.7",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-flatten-children": "^1.1.2",
"react-native": "0.69.12",
"react-native-auto-height-image": "^3.2.4",
"react-native-calendars": "^1.1264.0",
"react-native-gesture-handler": "~2.5.0",
"react-native-markdown-display": "^7.0.0-alpha.2",
"react-native-progress-circle": "github:lynbrookhs/react-native-progress-circle",
"react-native-reanimated": "~2.9.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "^12.1.1",
"react-native-web": "~0.18.7",
"semver": "^7.3.5",
"swr": "^0.5.6",
"swr-react-native": "^0.1.2",
"twrnc": "^3.4.0",
"use-subscription": "^1.5.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@expo/ngrok": "^2.5.0",
"@react-native-community/cli": "^9.0.0",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"@types/react-native-calendars": "^1.1264.2",
"@types/semver": "^7.3.8",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-universe": "^7.0.1",
"jest-expo": "^46.0.0",
"prettier": "^2.3.2",
"typescript": "^4.6.3"
},
"private": true,
"prettier": {
"printWidth": 100
},
"eslintConfig": {
"extends": [
"universe/native",
"universe/shared/typescript-analysis"
],
"overrides": [
{
"files": [
"*.ts",
"*.tsx",
"*.d.ts"
],
"parserOptions": {
"project": "./tsconfig.json"
}
}
],
"rules": {
"no-throw-literal": "off",
"@typescript-eslint/no-throw-literal": "off"
}
}
}