forked from 397-f20/Lounge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.65 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"predeploy": "expo build:web",
"deploy-hosting": "npm run predeploy && firebase deploy --only hosting",
"test": "jest --forceExit --detectOpenHandles",
"cypress:open": "cypress open",
"cypress:ci": "cypress run --config video=false",
"test:ci": "jest --forceExit --detectOpenHandles && start-server-and-test web http://localhost:19006 cypress:ci"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*)"
],
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+test.[jt]s?(x)"
]
},
"dependencies": {
"expo": "~39.0.2",
"expo-font": "~8.3.0",
"expo-status-bar": "~1.0.2",
"firebase": "7.9.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.2.tar.gz",
"react-native-elements": "^2.3.2",
"react-native-picker-select": "^8.0.3",
"react-native-web": "~0.13.12",
"@react-native-community/picker": "1.6.6"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@testing-library/react-native": "^7.0.2",
"cypress": "^5.4.0",
"jest-expo": "^39.0.0",
"react-test-renderer": "^16.14.0",
"start-server-and-test": "^1.11.5"
},
"private": true
}