-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 2.11 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
{
"name": "timeout-ultimate",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "jest --watch --coverage=false --changedSince=main",
"test-ci": "jest --ci --coverage=true --reporters=default --reporters=jest-junit",
"extractor-rules": "node scripts/rulesExtractor.js",
"extractor-annotations": "node scripts/annotationsExtractor.js",
"prepare": "husky"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/native": "^6.1.12",
"@react-navigation/native-stack": "^6.9.20",
"expo": "^51.0.0",
"expo-clipboard": "~6.0.3",
"expo-localization": "~15.0.3",
"expo-mail-composer": "~13.0.1",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.17",
"highlight-words-core": "^1.2.2",
"i18n-js": "^4.4.3",
"pdf.js-extract": "^0.2.1",
"react": "18.2.0",
"react-native": "0.74.2",
"react-native-elements": "^3.4.3",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-toast-message": "^2.1.7"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@testing-library/react-native": "^12.4.3",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-expo": "~51.0.1",
"jest-junit": "^16.0.0",
"lint-staged": ">=15.2.2",
"prettier": "^3.2.5"
},
"private": true,
"engines": {
"node": ">=0.20"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./setupJest.js"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native(-.*)?|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|@sentry/.*|i18n-js|native-base|react-native-svg)"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}