-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.63 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.63 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
77
78
79
80
81
82
83
{
"name": "app",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix . --ext .js,.jsx,.ts,.tsx",
"check-format": "prettier -c .",
"format": "prettier --write .",
"prepare": "husky",
"test:watch": "jest --watch --coverage=false --changedSince=origin/main",
"test": "jest",
"test:snapshot": "jest -u --coverage=false",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@expo-google-fonts/poppins": "^0.2.3",
"@pharmatech/sdk": "^0.4.21",
"@ptomasroos/react-native-multi-slider": "^2.2.2",
"@react-native-community/slider": "^4.5.6",
"@reduxjs/toolkit": "^2.6.1",
"date-fns": "^4.1.0",
"expo": "~52.0.37",
"expo-constants": "~17.0.7",
"expo-dev-client": "~5.0.20",
"expo-font": "~13.0.4",
"expo-image-picker": "~16.0.6",
"expo-linking": "~7.0.5",
"expo-location": "^18.0.10",
"expo-modules-core": "^2.2.2",
"expo-router": "~4.0.17",
"expo-secure-store": "~14.0.1",
"expo-splash-screen": "~0.29.22",
"expo-status-bar": "~2.0.1",
"expo-updates": "~0.27.1",
"jest": "~29.7.0",
"jest-expo": "~52.0.5",
"nativewind": "^4.0.36",
"react": "18.3.1",
"react-native": "0.76.7",
"react-native-calendars": "^1.1310.0",
"react-native-heroicons": "^4.0.0",
"react-native-maps": "1.18.0",
"react-native-pager-view": "^6.7.0",
"react-native-reanimated": "^3.16.2",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-sse": "^1.2.1",
"react-native-svg": "^15.11.2",
"react-redux": "^9.2.0",
"socket.io-client": "^4.8.1",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.21.0",
"@testing-library/react-native": "^13.1.0",
"@types/jest": "^29.5.14",
"@types/react": "~18.3.12",
"babel-plugin-module-resolver": "^5.0.2",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-native": "^5.0.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"prettier": "^3.5.2",
"react-native-dotenv": "^3.4.11",
"react-native-svg-transformer": "^1.5.0",
"react-test-renderer": "^18.3.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.24.1"
},
"private": true
}