-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.29 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.29 KB
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
{
"name": "react-native-template",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android:staging": "cd ./android && ENVFILE=.env.staging ./gradlew app:assembleRelease",
"android:prod": "cd ./android && ENVFILE=.env.prod ./gradlew app:assembleRelease",
"ios": "ENVFILE=.env.dev react-native run-ios",
"ios:staging": "ENVFILE=.env.staging react-native run-ios",
"ios:prod": "ENVFILE=.env.prod react-native run-ios",
"start": "watchman watch-del-all && react-native start --reset-cache",
"pod": "cd ios && pod install --repo-update && cd ..",
"test": "jest",
"prettier": "prettier --check src/**/*.tsx --write",
"postinstall": "npx husky install",
"commit": "git-cz",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx src/",
"android-clean": "cd android && gradlew clean",
"connect": "adb connect 127.0.0.1:21503"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.14",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/bottom-tabs": "^6.0.9",
"@react-navigation/native": "^6.0.4",
"@react-navigation/native-stack": "^6.2.5",
"@react-navigation/stack": "^6.0.9",
"axios": "^0.22.0",
"dayjs": "^1.10.7",
"lodash": "^4.17.21",
"native-base": "^3.2.2",
"react": "17.0.2",
"react-native": "^0.66.4",
"react-native-config": "^1.4.5",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.3.0-beta.2",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.8.0",
"react-native-svg": "^12.1.1",
"react-native-vector-icons": "^9.0.0",
"react-native-webview": "^11.17.2",
"react-query": "^3.26.0",
"zustand": "^3.5.13"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/loadable__component": "^5.13.4",
"@types/lodash": "^4.14.178",
"@types/react-native": "^0.65.0",
"@types/react-native-vector-icons": "^6.4.9",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^26.6.3",
"babel-plugin-import": "^1.13.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"commitizen": "^4.2.4",
"cz-customizable": "^6.3.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^3.11.0",
"eslint-plugin-replace-hooks": "^1.0.3",
"husky": "^7.0.4",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.5.0",
"react-test-renderer": "17.0.2",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"npm run eslint",
"npm run prettier"
]
}
}