-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.14 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
{
"name": "trylpt",
"version": "0.0.1",
"private": true,
"license": "Techco.JSC",
"scripts": {
"android": "ENVFILE=.env react-native run-android",
"android:staging": "ENVFILE=.env.staging react-native run-android",
"android:production": "ENVFILE=.env.production react-native run-android",
"build:android": "ENVFILE=.env cd android && ./gradlew assembleRelease",
"build:bundle": "ENVFILE=.env cd android && ./gradlew bundleRelease",
"clean": "cd android && ./gradlew clean && cd ..",
"pod": "cd ios && pod install && cd ..",
"ios": "ENVFILE=.env npx react-native run-ios --simulator 'iPhone 11'",
"ios:staging": "ENVFILE=.env.staging react-native run-ios --simulator 'iPhone 11'",
"ios:production": "ENVFILE=.env.production react-native run-ios --simulator 'iPhone 11'",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write \"{src,__{tests|mocks}__}/**/*.{js,jsx,ts,tsx}\"",
"pre-commit": "yarn lint:fix && yarn prettier && yarn test"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.9.1",
"@react-navigation/compat": "^5.2.7",
"@react-navigation/native": "^5.7.5",
"@react-navigation/stack": "^5.9.2",
"add": "^2.0.6",
"axios": "^0.20.0",
"lodash": "4.17.20",
"moment": "2.29.0",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-config": "^1.3.3",
"react-native-elements": "2.3.2",
"react-native-gesture-handler": "1.8.0",
"react-native-jitsi-meet": "^2.1.1",
"react-native-keyboard-aware-scroll-view": "^0.9.2",
"react-native-safe-area-context": "3.1.8",
"react-native-screens": "2.11.0",
"react-native-simple-toast": "^1.1.3",
"react-native-vector-icons": "^7.1.0",
"react-redux": "7.2.1",
"redux": "4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3",
"ts-get": "1.0.5",
"typesafe-actions": "5.1.0",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/runtime": "7.8.4",
"@react-native-community/eslint-config": "1.1.0",
"@types/jest": "25.2.3",
"@types/lodash": "4.14.161",
"@types/react-native": "0.63.2",
"@types/react-redux": "7.1.9",
"@types/react-test-renderer": "16.9.2",
"@types/redux-logger": "^3.0.8",
"@typescript-eslint/eslint-plugin": "2.27.0",
"@typescript-eslint/parser": "2.27.0",
"babel-jest": "25.1.0",
"babel-plugin-module-resolver": "4.0.0",
"eslint": "7.10.0",
"eslint-plugin-react-hooks": "4.1.2",
"husky": "^4.3.0",
"jest": "25.1.0",
"lint-staged": ">=10",
"metro-react-native-babel-preset": "0.59.0",
"react-test-renderer": "16.13.1",
"typescript": "3.8.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}