-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.1 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
{
"name": "dailyvita",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build": "expo export",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "tsc --noEmit && eslint --fix \"**/*.{js,ts,tsx}\" && prettier --write \"**/*.{js,ts,tsx}\"",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^2.1.2",
"@react-navigation/native": "^7.1.13",
"@react-navigation/stack": "^7.3.6",
"@reduxjs/toolkit": "^2.8.2",
"@types/react-native-vector-icons": "^6.4.18",
"axios": "^1.10.0",
"expo": "~53.0.12",
"expo-status-bar": "~2.2.3",
"lottie-react-native": "7.2.2",
"react": "19.0.0",
"react-native": "0.79.4",
"react-native-draggable-flatlist": "^4.0.3",
"react-native-gesture-handler": "~2.24.0",
"react-native-keychain": "^10.0.0",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-toast-message": "^2.3.0",
"react-native-vector-icons": "^10.2.0",
"react-redux": "^9.2.0",
"redux-saga": "^1.3.0",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.2.0",
"@types/react": "^19.0.10",
"@types/react-native": "^0.73.0",
"@vitest/ui": "^3.2.4",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.0",
"eslint-config-expo": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-switch-statements": "^1.0.0",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"react-test-renderer": "19.0.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"private": true
}