forked from Grashjs/cmms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.15 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.15 KB
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
{
"name": "atlas",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"format": "prettier --write \"./**/*.{ts,tsx,js,jsx,json}\" --config ./.prettierrc",
"postinstall": "patch-package"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "^2.1.2",
"@react-native-community/datetimepicker": "6.7.3",
"@react-native-community/netinfo": "9.3.7",
"@react-native-firebase/analytics": "^17.4.0",
"@react-native-firebase/app": "^17.4.0",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.1.0",
"@reduxjs/toolkit": "^1.9.3",
"@stomp/stompjs": "^7.0.0",
"base-64": "^1.0.0",
"deprecated-react-native-prop-types": "^4.0.0",
"dotenv": "^16.4.5",
"expo": "^48.0.0",
"expo-asset": "~8.9.1",
"expo-av": "~13.2.1",
"expo-barcode-scanner": "~12.3.2",
"expo-constants": "~14.2.1",
"expo-device": "~5.2.1",
"expo-document-picker": "~11.2.2",
"expo-font": "~11.1.1",
"expo-image-picker": "~14.1.1",
"expo-linking": "~4.0.1",
"expo-notifications": "~0.18.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-system-ui": "~2.2.1",
"expo-updates": "~0.16.4",
"expo-web-browser": "~12.1.1",
"formik": "^2.2.9",
"i18next": "^22.4.10",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"mime": "^3.0.0",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^12.2.0",
"react-native": "0.71.3",
"react-native-actions-sheet": "^0.8.21",
"react-native-dotenv": "^3.4.11",
"react-native-dropdown-picker": "^5.4.4",
"react-native-dropdown-select-list": "^2.0.4",
"react-native-flash-message": "^0.4.1",
"react-native-fs": "^2.20.0",
"react-native-image-viewing": "^0.2.2",
"react-native-modal-datetime-picker": "^14.0.1",
"react-native-nfc-manager": "^3.14.7",
"react-native-pager-view": "6.1.2",
"react-native-paper": "^5.9.1",
"react-native-pure-jwt": "^3.0.2",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.27.0",
"react-native-tab-view": "^3.4.1",
"react-native-url-polyfill": "^2.0.0",
"react-native-vector-icons": "^9.2.0",
"react-native-web": "~0.18.11",
"react-native-webview": "11.26.0",
"react-redux": "^8.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2",
"sockjs-client": "^1.6.1",
"text-encoding": "^0.7.0",
"websocket": "^1.0.34",
"yup": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/mime": "^3.0.1",
"@types/react": "~18.0.27",
"@types/react-native": "~0.70.6",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"jest": "^29.2.1",
"jest-expo": "^47.0.0",
"patch-package": "^8.0.0",
"prettier": "^2.6.2",
"react-test-renderer": "18.1.0",
"typescript": "^4.9.4"
},
"private": true
}