generated from nishkohli96/rn-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.66 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
{
"name": "react-native-libs",
"version": "1.0.0",
"private": true,
"scripts": {
"android:dev": "SET ENVFILE=.env.dev && react-native run-android",
"android:prod": "SET ENVFILE=.env.prod && react-native run-android",
"ios:dev": "ENVFILE=.env.dev react-native run-ios",
"ios:prod": "ENVFILE=.env.prod react-native run-ios",
"start:dev": "ENVFILE=.env.dev react-native start",
"start:prod": "ENVFILE=.env.prod react-native start",
"test": "jest",
"lint": "eslint .",
"prettier": "prettier --write ."
},
"rnpm": {
"assets": [
"./app/assets/fonts"
]
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.7",
"@react-native-community/clipboard": "^1.5.1",
"@react-native-picker/picker": "^1.16.7",
"@react-navigation/drawer": "^6.1.4",
"@react-navigation/material-bottom-tabs": "^6.0.5",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.7",
"babel-plugin-module-resolver": "^4.1.0",
"i18next": "^20.6.0",
"mobx": "^6.3.3",
"mobx-react-lite": "^3.2.1",
"react": "17.0.2",
"react-i18next": "^11.11.4",
"react-native": "0.65.1",
"react-native-charts-wrapper": "^0.5.7",
"react-native-config": "^1.4.4",
"react-native-contacts": "^7.0.2",
"react-native-geolocation-service": "^5.3.0-beta.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-onboarding-swiper": "^1.1.4",
"react-native-paper": "^4.9.2",
"react-native-razorpay": "^2.2.7",
"react-native-reanimated": "1.13.3",
"react-native-safe-area-context": "^3.3.1",
"react-native-screens": "^3.6.0",
"react-native-svg": "^12.1.1",
"react-native-vector-icons": "^8.1.0",
"react-native-web": "^0.17.1",
"styled-components": "^5.3.1",
"victory-native": "^35.5.5"
},
"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.14.0",
"eslint-plugin-react": "^7.25.1",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.0",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "17.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write ."
]
},
"jest": {
"preset": "react-native"
}
}