forked from dsernst/GoenkaNative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.29 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
{
"name": "goenka-native",
"version": "3.3.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"postlint": "node ./typecheck.js",
"version": "node ./version.js",
"postinstall": "patch-package"
},
"dependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/async-storage": "^1.7.1",
"@react-native-community/datetimepicker": "7.6.0",
"@react-native-community/eslint-config": "^0.0.7",
"@react-native-community/push-notification-ios": "^1.2.0",
"@react-native-firebase/app": "^6.3.1",
"@react-native-firebase/auth": "^6.3.1",
"@react-native-firebase/firestore": "^6.3.1",
"@types/bluebird": "^3.5.29",
"@types/jest": "^24.0.24",
"@types/lodash": "^4.14.149",
"@types/react-native": "^0.61.4",
"@types/react-native-keep-awake": "^2.0.2",
"@types/react-native-push-notification": "^3.0.7",
"@types/react-native-vector-icons": "^6.4.5",
"@types/react-redux": "^7.1.5",
"@types/react-test-renderer": "16.9.1",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-jest": "^24.9.0",
"bluebird": "^3.7.2",
"dayjs": "^1.8.19",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-sort-destructure-keys": "^1.3.3",
"eslint-plugin-sort-keys-fix": "^1.1.0",
"eslint-plugin-typescript-sort-keys": "^0.5.0",
"eslint-plugin-unicorn": "^15.0.1",
"import-sort-style-module": "^6.0.0",
"jest": "^24.9.0",
"lodash": "^4.17.15",
"metro-react-native-babel-preset": "^0.56.0",
"patch-package": "^6.2.0",
"postinstall-postinstall": "^2.0.0",
"prettier-plugin-import-sort": "^0.0.3",
"react": "18.2.0",
"react-native": "^0.72.5",
"react-native-contacts": "^5.0.7",
"react-native-device-info": "^5.5.1",
"react-native-keep-awake": "^4.0.0",
"react-native-modal-datetime-picker": "^8.1.1",
"react-native-onesignal": "^3.6.4",
"react-native-push-notification": "^3.1.9",
"react-native-segmented-control-tab": "^3.4.1",
"react-native-sound": "^0.11.0",
"react-native-splash-screen": "^3.2.0",
"react-native-system-setting": "^1.7.4",
"react-native-vector-icons": "^6.6.0",
"react-native-walkthrough-tooltip": "^1.1.7",
"react-redux": "^7.1.3",
"react-test-renderer": "16.9.0",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"typescript": "^3.8.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"chalk": "^3.0.0",
"eslint-plugin-prettier": "^3.1.2",
"firebase-admin": "^8.9.2",
"prettier": "^1.19.1",
"strip-json-comments": "^3.0.1",
"ts-node": "^8.6.2"
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"babel": {
"presets": [
"module:metro-react-native-babel-preset"
]
}
}