This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"name": "firehose",
"version": "1.0.0",
"license": "MIT",
"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",
"test": "jest src --watchAll",
"cypress": "cypress open",
"lint": "eslint cypress src \"*.js\"",
"build:ios": "eas build --platform ios --local",
"build:ios:remote": "eas build --platform ios",
"deploy:web": "expo export:web && cp _redirects web-build && netlify deploy --prod"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@codingitwrong/jsonapi-client": "^0.0.11",
"@expo/webpack-config": "^0.17.2",
"@react-navigation/drawer": "^6.5.3",
"@react-navigation/native": "^6.0.16",
"@react-navigation/native-stack": "^6.9.4",
"@tanstack/react-query": "^4.19.1",
"axios": "^1.2.1",
"expo": "^47.0.8",
"expo-linking": "~3.2.3",
"expo-secure-store": "~12.0.0",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"lodash": "^4.17.21",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-gesture-handler": "~2.8.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-paper": "5.0.0-rc.10",
"react-native-reanimated": "~2.12.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-style-queries": "^0.1.1",
"react-native-web": "~0.18.9"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@react-native-community/eslint-config": "^3.0.3",
"@testing-library/jest-native": "^5.3.2",
"@testing-library/react-native": "^11.5.0",
"babel-jest": "^29.2.2",
"cypress": "^12.0.2",
"eslint": "^7.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.2.2",
"jest-expo": "^47.0.0-beta",
"nock": "^13.2.9",
"prettier": "^2.8.1",
"typescript": "^4.6.3"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./jest-setup.js"
],
"setupFilesAfterEnv": [
"./jest-setup-after-env.js"
]
},
"private": true
}