-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 2.77 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
{
"name": "sundargutka",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"link-react": "react-native link",
"test": "jest",
"lint": "eslint .",
"precommit": "lint-staged"
},
"dependencies": {
"@notifee/react-native": "^5.7.0",
"@react-native-async-storage/async-storage": "^1.17.10",
"@react-native-community/datetimepicker": "^3.5.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/slider": "^4.3.1",
"@react-native-firebase/analytics": "^13.0.0",
"@react-native-firebase/app": "^13.0.0",
"@react-native-firebase/crashlytics": "^13.0.0",
"@react-native-firebase/messaging": "^13.1.1",
"@react-navigation/native": "^6.0.12",
"@react-navigation/native-stack": "^6.8.0",
"@reduxjs/toolkit": "^1.8.5",
"deprecated-react-native-prop-types": "^2.3.0",
"moment": "^2.29.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-native": "^0.69.5",
"react-native-action-sheet-component": "^0.0.36",
"react-native-animatable": "^1.3.3",
"react-native-cli": "^2.0.1",
"react-native-collapsible": "^1.6.0",
"react-native-elements": "^3.4.2",
"react-native-keep-awake": "^4.0.0",
"react-native-localization": "^2.1.7",
"react-native-modal": "^13.0.0",
"react-native-modal-datetime-picker": "^13.0.0",
"react-native-modal-selector": "^2.1.1",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.17.0",
"react-native-sortable-list": "^0.0.25",
"react-native-sound": "^0.11.1",
"react-native-spinkit": "^1.5.1",
"react-native-sqlite-storage": "^6.0.1",
"react-native-vector-icons": "^9.2.0",
"react-native-version-number": "^0.3.6",
"react-native-webview": "^11.23.0",
"react-redux": "^7.2.6",
"redux": "^4.2.0",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/runtime": "7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^0.14.3",
"jest": "^26.6.3",
"lint-staged": "^13.0.3",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.7.1",
"react-test-renderer": "17.0.2"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./assests/fonts/"
]
}
}