-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.8 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
{
"name": "jnotes",
"version": "0.0.1",
"private": true,
"scripts": {
"prestart": "cp .env.development .env",
"start": "react-native start",
"android": "react-native run-android",
"android:staging": "react-native run-android --variant=stagingdebug",
"android:staging-release": "react-native run-android --variant=stagingrelease",
"android:dev": "react-native run-android --variant=developmentdebug",
"android:dev-release": "react-native run-android --variant=developmentrelease",
"android:prod": "react-native run-android --variant=productiondebug",
"android:prod-release": "react-native run-android --variant=productionrelease",
"ios": "react-native run-ios --simulator='iPhone 14'",
"ios:dev": "react-native run-ios --scheme 'SchemeDevelopment'",
"ios:prod": "react-native run-ios --scheme 'SchemeProduction'",
"ios:staging": "react-native run-ios --scheme 'SchemeStaging'",
"postinstall": "react-native setup-ios-permissions && pod-install",
"test": "jest",
"deploy-from-local": "scripts/deploy-from-local.sh"
},
"dependencies": {
"@babel/plugin-transform-export-namespace-from": "^7.22.5",
"@react-native-firebase/app": "^17.5.0",
"@react-native-firebase/messaging": "^17.5.0",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@reduxjs/toolkit": "^1.9.5",
"@sentry/react-native": "^5.6.0",
"@types/lodash.debounce": "^4.0.7",
"appcenter": "4.4.5",
"appcenter-analytics": "4.4.5",
"appcenter-crashes": "4.4.5",
"date-fns": "^2.30.0",
"html-to-json-parser": "^1.1.0",
"lodash.debounce": "^4.0.8",
"react": "18.2.0",
"react-hook-form": "^7.45.1",
"react-native": "0.71.8",
"react-native-code-push": "^8.0.2",
"react-native-config": "^1.5.1",
"react-native-draggable-flatlist": "^4.0.1",
"react-native-drawer-layout": "^3.2.1",
"react-native-gesture-handler": "^2.12.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-mmkv": "^2.10.0",
"react-native-paper": "^5.9.1",
"react-native-pell-rich-editor": "^1.9.0",
"react-native-permissions": "^3.8.0",
"react-native-reanimated": "^3.3.0",
"react-native-receive-sharing-intent": "^2.0.0",
"react-native-safe-area-context": "^4.5.3",
"react-native-screens": "^3.21.0",
"react-native-svg": "^13.9.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-uuid": "^2.0.1",
"react-native-vector-icons": "^9.2.0",
"react-native-webview": "^13.2.2",
"react-redux": "^8.1.0",
"reactotron-redux": "^3.1.3",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"styled-components": "^6.0.0-rc.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-async-storage/async-storage": "^1.19.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/react-native": "^12.1.2",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^29.2.1",
"@types/latinize": "^0.2.15",
"@types/react": "^18.0.24",
"@types/react-native-vector-icons": "^6.4.13",
"@types/react-test-renderer": "^18.0.0",
"@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.26",
"babel-jest": "^29.2.1",
"babel-plugin-styled-components": "^2.1.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.2.1",
"latinize": "^0.5.0",
"metro-react-native-babel-preset": "0.73.9",
"pod-install": "0.1.38",
"prettier": "^2.4.1",
"react-test-renderer": "18.2.0",
"reactotron-react-native": "^5.0.3",
"reactotron-react-native-mmkv": "^0.1.1",
"typescript": "4.8.4"
},
"reactNativePermissionsIOS": [
"Notifications"
],
"resolutions": {
"styled-components": "^5"
}
}