-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.37 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.37 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
{
"name": "ploter",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"dev": "npx expo start --clear",
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"gen:client": "npx @rtk-query/codegen-openapi openapi-config.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@babel/runtime": "^7.28.2",
"@clerk/clerk-expo": "^2.14.22",
"@expo/vector-icons": "^14.1.0",
"@react-native-google-signin/google-signin": "^15.0.0",
"@react-navigation/bottom-tabs": "^7.4.2",
"@react-navigation/native": "^7.1.14",
"@react-navigation/native-stack": "^7.3.21",
"@reduxjs/toolkit": "^2.8.2",
"@rtk-query/codegen-openapi": "^2.0.0",
"expo": "~53.0.22",
"expo-auth-session": "~6.2.1",
"expo-crypto": "^14.1.5",
"expo-dev-client": "~5.2.4",
"expo-font": "~13.3.2",
"expo-location": "^18.1.6",
"expo-secure-store": "~14.2.4",
"expo-status-bar": "~2.2.3",
"expo-web-browser": "^14.2.0",
"nativewind": "^4.1.23",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "0.79.5",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-redux": "^9.2.0",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@react-native-community/eslint-config": "^3.2.0",
"@types/react": "~19.0.10",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"esbuild-runner": "^2.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-native": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "~5.8.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"private": true
}