-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.44 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.44 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
{
"name": "ios-app",
"version": "1.0.0",
"scripts": {
"android": "expo start --android",
"ios": "expo start --ios",
"start": "expo start",
"prebuild": "expo prebuild",
"test": "jest",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"web": "expo start --web"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"setupFiles": [
"./jestSetupFile.js"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"transformIgnorePatterns": [
"./node_modules/(?!(jest-)?react-native|@react-native|@react-native-community|@react-navigation|react-redux|@reduxjs/toolkit|@react-native-async-storage/async-storage|@react-native-community/datetimepicker|@react-navigation/bottom-tabs|@react-navigation/native-stack|react-native-elements|react-native-reanimated|react-native-safe-area-context|expo-status-bar|expo|@expo|axios|twrnc)"
]
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-community/datetimepicker": "^8.2.0",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native-stack": "^7.1.14",
"@reduxjs/toolkit": "^2.5.0",
"axios": "^1.8.2",
"expo": "^52.0.41",
"expo-status-bar": "~2.0.1",
"react": "18.3.1",
"react-native": "^0.76.7",
"react-native-elements": "^3.4.3",
"react-native-reanimated": "3.16.2",
"react-native-safe-area-context": "4.12.0",
"react-redux": "^9.2.0",
"twrnc": "^4.6.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@testing-library/react-native": "^13.2.0",
"@types/jest": "^29.5.14",
"@types/react": "~18.3.12",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.1",
"eslint-plugin-testing-library": "^7.1.1",
"jest": "^29.7.0",
"jest-expo": "^52.0.6",
"msw": "^2.7.3",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"react-test-renderer": "18.3.1",
"tailwindcss": "^3.4.0",
"typescript": "~5.3.3"
},
"eslintConfig": {
"extends": "universe/native",
"root": true
},
"private": true
}