-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.09 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
{
"name": "react-native-basekit",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "./node_modules/.bin/eslint . --ext .js",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run lint",
"git add ."
]
},
"dependencies": {
"@react-native-community/async-storage": "^1.5.1",
"@react-native-community/netinfo": "^4.1.3",
"axios": "^0.21.2",
"idx": "^2.5.6",
"lodash": "^4.17.21",
"lottie-ios": "^3.0.3",
"lottie-react-native": "^3.0.2",
"moment": "^2.29.4",
"prop-types": "^15.7.2",
"querystring": "^0.2.0",
"react": "16.8.6",
"react-mixin": "^5.0.0",
"react-native": "0.70.6",
"react-native-fbsdk": "^0.10.1",
"react-native-firebase": "^5.5.5",
"react-native-gesture-handler": "^1.3.0",
"react-native-google-signin": "^2.0.0",
"react-native-iphone-x-helper": "^1.2.1",
"react-native-loading-spinner-overlay": "^1.0.1",
"react-native-lottie-loader": "0.0.6",
"react-native-offline": "^5.0.0",
"react-native-redux-toast": "^1.0.3",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^3.11.1",
"react-navigation-redux-helpers": "^3.0.2",
"react-redux": "^7.1.0",
"react-timer-mixin": "^0.13.4",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/runtime": "^7.5.0",
"@react-native-community/eslint-config": "^0.0.3",
"babel-jest": "^24.8.0",
"eslint": "^6.1.0",
"eslint-config-imbudhiraja": "^1.0.4",
"eslint-config-prettier": "^6.0.0",
"husky": "^3.0.1",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"metro-react-native-babel-preset": "^0.54.1",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native"
},
"author": "Manish Budhiraja",
"license": "MIT",
"email": "[email protected]"
}