-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.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
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
{
"name": "rnboilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "npx react-native run-android",
"debug": "open 'rndebugger://set-debugger-loc?host=localhost&port=8081'",
"ios": "react-native run-ios",
"clean": "watchman watch-del-all && rm -rf node_modules && npm install",
"start": "npx react-native start",
"test": "jest",
"lint": "eslint .",
"postinstall": "npx jetify",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"",
"buildRelease": "cd android && ./gradlew clean && ./gradlew assembleRelease",
"bundleRelease": "cd android && ./gradlew clean && ./gradlew bundleRelease",
"buildQaRelease": "cd android && ./gradlew clean && ./gradlew assembleQaRelease",
"buildStagingRelease": "cd android && ./gradlew clean && ./gradlew assembleStagingRelease",
"prepare": "husky install"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"axios": "^1.3.6",
"dayjs": "^1.11.6",
"mobx": "^6.9.0",
"mobx-persist-store": "^1.1.3",
"mobx-react": "^7.6.0",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-native": "0.71.11",
"react-native-bootsplash": "^4.7.2",
"react-native-check-version": "^1.0.16",
"react-native-config": "^1.5.0",
"react-native-date-picker": "^4.2.13",
"react-native-device-info": "^10.0.2",
"react-native-extra-dimensions-android": "^1.2.5",
"react-native-flash-message": "^0.4.1",
"react-native-gesture-handler": "^2.10.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-linear-gradient": "^2.7.3",
"react-native-localization": "^2.3.1",
"react-native-mmkv": "^2.8.0",
"react-native-modal": "^13.0.1",
"react-native-network-logger": "^1.14.1",
"react-native-paper": "^4.12.5",
"react-native-safe-area-context": "^4.5.3",
"react-native-screens": "^3.20.0",
"react-native-svg": "^13.9.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-uuid": "^2.0.1",
"react-native-vector-icons": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"babel-jest": "^29.2.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.40.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-react-native-a11y": "^3.3.0",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.0",
"jest": "^29.4.3",
"jetifier": "^2.0.0",
"metro-config": "^0.64.0",
"metro-react-native-babel-preset": "^0.73.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"react-test-renderer": "18.2.0",
"redux-mock-store": "^1.5.4",
"ttab": "^0.8.0"
}
}