-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
96 lines (96 loc) · 3.27 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": "wppconnect_mobile",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"postversion": "react-native-version",
"tsc": "tsc",
"clean": "rimraf build",
"build": "yarn run clean && yarn run tsc --",
"watch": "yarn run build -- -w",
"watchAndRunAndroid": "concurrently \"yarn run watch\" \"yarn run android\"",
"buildRunAndroid": "yarn run build && yarn run watchAndRunAndroid ",
"watchAndRunIOS": "concurrently \"yarn run watch\" \"yarn run ios\"",
"buildRunIOS": "yarn run build && yarn run watchAndRunIOS ",
"watchAndStart": "concurrently \"yarn run watch\" \"yarn run start\"",
"buildAndStart": "yarn run build && yarn run watchAndStart",
"commit": "cz"
},
"dependencies": {
"@babel/eslint-parser": "^7.18.2",
"@react-native-async-storage/async-storage": "^1.17.6",
"@react-native-cookies/cookies": "^6.2.1",
"@react-native-material/core": "^1.3.7",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.2",
"@react-navigation/stack": "^6.2.1",
"@reduxjs/toolkit": "^1.8.2",
"@types/lodash.memoize": "^4.1.7",
"@typescript-eslint/parser": "^5.28.0",
"axios": "^0.27.2",
"eslint-scope": "^7.1.1",
"i18n-js": "^4.0.0-alpha.14",
"lodash.memoize": "^4.1.2",
"lottie-react-native": "^5.1.3",
"qrcode-terminal": "^0.12.0",
"react": "18.0.0",
"react-native": "0.69.0",
"react-native-device-info": "^9.0.2",
"react-native-flash-message": "^0.2.1",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.4.2",
"react-native-localize": "^2.2.2",
"react-native-lottie-splash-screen": "^0.1.14",
"react-native-qrcode-svg": "^6.1.2",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.20.0",
"react-native-svg": "^12.3.0",
"react-native-uuid": "^2.0.1",
"react-native-vector-icons": "^9.1.0",
"react-native-webview": "^11.22.2",
"react-navigation": "^4.4.4",
"react-navigation-stack": "^2.10.4",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@babel/core": "7.18.5",
"@babel/runtime": "7.21.0",
"@react-native-community/eslint-config": "^3.0.2",
"@types/jest": "^28.1.2",
"@types/react": "^18.0.14",
"@types/react-native": "^0.71.3",
"@types/react-native-vector-icons": "^6.4.10",
"@types/react-test-renderer": "^18.0.0",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"babel-jest": "26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.18.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-native": "^4.0.0",
"jest": "28.1.1",
"metro-react-native-babel-preset": "^0.75.1",
"prettier": "^2.7.1",
"react-test-renderer": "18.2.0",
"typescript": "^4.7.4"
},
"jest": {
"preset": "react-native"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}