forked from thisisqubika/react-native-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.18 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
{
"name": "rntemplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android --variant=developmentDebug",
"android:prod": "react-native run-android --variant=productionDebug",
"android:staging": "react-native run-android --variant=stagingDebug",
"ios": "react-native run-ios --scheme 'Development'",
"ios:prod": "react-native run-ios --scheme 'Production'",
"ios:staging": "react-native run-ios --scheme 'Staging'",
"clean": "watchman watch-del-all && rm -rf package-lock.json && rm -rf node_modules && npm install",
"start": "react-native start",
"test": "jest --watchAll",
"test:ci": "jest",
"lint": "eslint .",
"postinstall": "npx jetify && npx pod-install"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.11.8",
"@react-navigation/native": "^5.9.3",
"axios": "^0.21.1",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-bootsplash": "^3.1.5",
"react-native-config": "^1.4.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-localization": "^2.1.6",
"react-native-mmkv-storage": "^0.5.3",
"react-native-reanimated": "^2.0.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^2.18.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/runtime": "^7.13.10",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.22.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-module-resolver": "^1.2.0",
"eslint-plugin-react-native-a11y": "^2.0.4",
"eslint-plugin-testing-library": "^3.10.1",
"jest": "^26.6.3",
"jetifier": "^1.6.6",
"metro-react-native-babel-preset": "^0.65.2",
"react-test-renderer": "17.0.1",
"redux-mock-store": "^1.5.4"
}
}