-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.78 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
{
"name": "patterns",
"version": "1.0.0",
"main": "index.ts",
"dependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/native": "^7.3.3",
"@react-navigation/native-stack": "^7.17.5",
"@supabase/supabase-js": "^2.108.2",
"expo": "~56.0.12",
"expo-speech-recognition": "^56.0.1",
"expo-status-bar": "~56.0.4",
"react": "19.2.3",
"react-native": "0.85.3",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "4.25.2",
"react-native-url-polyfill": "^3.0.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@react-native/jest-preset": "^0.85.3",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^30.0.0",
"@types/react": "~19.2.2",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.7.0",
"jest-expo": "^56.0.5",
"prettier": "^3.8.4",
"typescript": "~6.0.3"
},
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"<rootDir>/src/__tests__/setup.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"src/__tests__/setup.ts"
],
"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)"
]
},
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --write src",
"prettier:check": "prettier --check src"
},
"private": true
}