-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.4 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "RNTemplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"android:release": "cd android && ./gradlew assembleRelease && cd ..",
"android:bundle": "cd android && ./gradlew bundleRelease && cd ..",
"ios:release": "npx react-native run-ios --configuration 'Release'",
"start": "react-native start",
"start:reset": "react-native start --reset-cache",
"pod": "npx pod-install",
"rename": "react-native-rename",
"gradlew:clean": "cd android && ./gradlew clean",
"reset": "watchman watch-del-all && rm -rf $TMDIR/react-* && rm -rf node_modules && yarn cache clean",
"reinstall": "rm -rf node_module/ && yarn",
"test": "jest",
"server:install": "cd servers && yarn",
"server:start": "cd servers && yarn start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@nghinv/react-native-design": "^0.0.6",
"@react-navigation/drawer": "^6.1.4",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.1.0",
"@react-navigation/stack": "^6.0.7",
"apollo-client": "^2.6.10",
"graphql": "^15.5.3",
"lottie-react-native": "^4.0.3",
"react": "17.0.2",
"react-fast-compare": "^3.2.0",
"react-native": "0.65.1",
"react-native-animateable-text": "^0.7.0",
"react-native-config": "^1.4.4",
"react-native-fast-image": "^8.3.7",
"react-native-gesture-handler": "^1.10.3",
"react-native-haptic-feedback": "^1.11.0",
"react-native-i18n": "^2.0.15",
"react-native-languages": "^3.0.2",
"react-native-linear-gradient": "^2.5.6",
"react-native-lottie-splash-screen": "^0.1.14",
"react-native-mmkv": "^1.3.0",
"react-native-reanimated": "^2.3.0-alpha.2",
"react-native-safe-area-context": "^3.3.0",
"react-native-screens": "^3.6.0",
"react-native-svg": "^12.1.1",
"react-redux": "^7.2.5",
"redux": "^4.1.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@commitlint/config-conventional": "^13.1.0",
"@nghinv/eslint-config": "^3.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^27.0.1",
"@types/react-native": "^0.64.13",
"@types/react-native-i18n": "^2.0.0",
"@types/react-test-renderer": "^17.0.1",
"@types/redux-logger": "^3.0.9",
"babel-jest": "^26.6.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"commitlint": "^13.1.0",
"eslint": "7.14.0",
"husky": "4.2.5",
"jest": "^26.6.3",
"lint-staged": "^11.1.2",
"metro-react-native-babel-preset": "0.66.0",
"react-native-codegen": "^0.0.7",
"react-native-rename": "^2.9.0",
"react-test-renderer": "17.0.2",
"typescript": "^4.3.5"
},
"resolutions": {
"@types/react": "^17"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint --fix"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}