-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.79 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.79 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
{
"name": "cloudlockr",
"version": "2.2.4",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --verbose",
"lint": "eslint ."
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.2",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.11.1",
"@react-navigation/native": "^5.9.0",
"@react-navigation/stack": "^5.12.6",
"@reduxjs/toolkit": "^1.5.0",
"@thecodingmachine/redux-toolkit-wrapper": "1.3.0",
"axios": "^0.21.1",
"dayjs": "^1.10.4",
"i18next": "^19.8.4",
"react": "16.13.1",
"react-i18next": "^11.8.5",
"react-native": "0.63.4",
"react-native-appearance": "^0.3.4",
"react-native-bluetooth-classic": "^1.60.0-rc.13",
"react-native-document-picker": "^5.0.1",
"react-native-flipper": "^0.64.0",
"react-native-fs": "^2.16.6",
"react-native-geolocation-service": "^5.2.0",
"react-native-gesture-handler": "^1.8.0",
"react-native-loading-spinner-overlay": "^2.0.0",
"react-native-progress": "^4.1.2",
"react-native-raw-bottom-sheet": "^2.2.0",
"react-native-reanimated": "^1.13.0",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.14.0",
"react-native-spinkit": "^1.5.1",
"react-native-toast-message": "^1.4.9",
"react-native-wifi-reborn": "^4.3.7",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-flipper": "^1.4.2",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.13.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.22.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-mock-axios": "^4.3.0",
"jest-transform-stub": "^2.0.0",
"metro-react-native-babel-preset": "^0.64.0",
"react-test-renderer": "17.0.1"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.js$": "babel-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"moduleNameMapper": {
"^.+\\.(css|style|less|sass|scss|png|jpg|ttf|woff|woff2|svg)$": "jest-transform-stub"
},
"setupFiles": [
"./jest.setup.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"timers": "fake",
"testEnvironment": "jsdom"
}
}