-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.57 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.57 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
{
"name": "stackage-app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start",
"demo": "npx expo start --no-dev",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest --watch --coverage=false --changedSince=origin/dev",
"testDebug": "jest -o --watch --coverage=false",
"testCoverage": "jest"
},
"overrides": {
"metro": "0.76.0",
"metro-resolver": "0.76.0"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@flyerhq/react-native-link-preview": "^1.6.0",
"@lowkey/react-native-link-preview": "^0.2.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.3.6",
"expo": "~48.0.11",
"expo-constants": "~14.2.1",
"expo-linking": "~4.0.1",
"expo-router": "^1.5.3",
"expo-status-bar": "~1.4.4",
"firebase": "^9.20.0",
"jest": "^29.2.1",
"jest-expo": "^48.0.2",
"lodash": "^4.17.21",
"lodash.isequal": "^4.5.0",
"moment": "^2.29.4",
"nanoid": "^4.0.2",
"react": "18.2.0",
"react-native": "0.71.7",
"react-native-elements": "^3.4.3",
"react-native-gifted-chat": "^2.0.1",
"react-native-radio-buttons-group": "^2.3.2",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-web": "^0.18.12",
"react-redux": "^8.0.5",
"react-test-renderer": "^18.2.0",
"styled-components": "^5.3.10"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/react-native": "^12.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/lodash.isequal": "^4.5.6",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "2.8.7"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
]
},
"private": true
}