-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "i_spy_shopper",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest"
},
"detox": {
"test-runner": "jest",
"runner-config": "__e2e__/config.json"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(@react-native|react-native|@expo.*|expo.*|react-native-base64|react-native-sectioned-multi-select)/)"
],
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__unit__/mocks/fileMock.js",
"\\.(css|less)$": "<rootDir>/__unit__/mocks/fileMock.js"
},
"setupFilesAfterEnv": [
"./__unit__/jest.firebase_setup.js"
],
"setupFiles": [
"<rootDir>/jest.setup.js"
]
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.11",
"expo": "^47.0.13",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.0",
"firebase": "^8.2.3",
"node": "^19.1.0",
"react": "18.2.0",
"react-native": "0.71.1",
"react-native-base64": "^0.2.1",
"react-native-config": "^1.4.11",
"react-native-paper": "^5.5.1",
"react-native-randombytes": "^3.6.1",
"react-native-sectioned-multi-select": "^0.9.1",
"react-native-testing-library": "^6.0.0",
"react-native-vector-icons": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"detox": "^20.1.2",
"jest": "^29.4.1",
"react-native-dotenv": "^3.4.2",
"react-test-renderer": "^18.2.0",
"rn-nodeify": "^10.3.0"
},
"private": true,
"react-native": {
"crypto": "react-native-crypto",
"https": "https-browserify",
"fs": "react-native-level-fs"
},
"browser": {
"crypto": "react-native-crypto",
"https": "https-browserify",
"fs": "react-native-level-fs"
}
}