-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
81 lines (81 loc) · 2.81 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
73
74
75
76
77
78
79
80
81
{
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint --report-unused-disable-directives --ignore-path .gitignore --ext js,jsx,ts,tsx .",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check .",
"typecheck": "tsc --build",
"validate": "concurrently --kill-others-on-fail -g -p \"[{name}]\" -n \"lint,prettier,typecheck,test\" \"npm:lint\" \"npm:prettier:check\" \"npm:typecheck\" \"npm:test\"",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@gorhom/bottom-sheet": "4.5.1",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-navigation/native": "6.1.7",
"@shopify/flash-list": "1.4.3",
"@tanstack/react-query": "^5.0.0",
"@th3rdwave/react-navigation-bottom-sheet": "0.2.7",
"@types/react": "~18.2.14",
"axios": "^1.5.1",
"dayjs": "^1.11.10",
"expo": "^49.0.0",
"expo-av": "~13.4.1",
"expo-build-properties": "~0.8.3",
"expo-constants": "~14.4.2",
"expo-font": "~11.4.0",
"expo-image": "~1.3.4",
"expo-linking": "~5.0.2",
"expo-router": "2.0.9",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.17",
"jest": "^29.2.1",
"jest-expo": "49.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.6",
"react-native-gesture-handler": "~2.12.0",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-web": "~0.19.6",
"react-query": "^3.39.3",
"typescript": "^5.1.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/jest-native": "5.4.3",
"@testing-library/react-native": "12.3.0",
"@types/jest": "29.5.5",
"@types/react-test-renderer": "18.0.1",
"@typescript-eslint/eslint-plugin": "6.7.0",
"concurrently": "8.2.1",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-prettier": "^5.0.0",
"jest-date-mock": "^1.0.8",
"prettier": "3.0.3",
"prettier-plugin-organize-imports": "3.2.3"
},
"name": "ke.droidcon.reactnative",
"version": "1.0.0",
"main": "expo-router/entry",
"private": true,
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"<rootDir>/jest.setupFilesAfterEnv.ts",
"jest-date-mock"
],
"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)"
]
}
}