-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.56 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "waterme",
"version": "0.0.1",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint-fix": "eslint . --ext .ts,.tsx --fix",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare": "husky install",
"pre-commit": "lint-staged",
"generate:sqlite": "drizzle-kit generate:sqlite"
},
"dependencies": {
"@dev-plugins/react-navigation": "^0.0.5",
"@expo-google-fonts/inter": "^0.2.3",
"@react-native-community/datetimepicker": "7.6.1",
"@tamagui/config": "^1.88.17",
"@tamagui/core": "^1.88.17",
"@tamagui/lucide-icons": "^1.88.17",
"@tanstack/react-query": "^5.18.1",
"@types/react": "~18.2.45",
"drizzle-orm": "^0.29.3",
"expo": "^50.0.3",
"expo-build-properties": "~0.11.0",
"expo-constants": "~15.4.5",
"expo-dev-client": "~3.3.7",
"expo-device": "~5.9.3",
"expo-font": "~11.10.2",
"expo-image": "~1.10.5",
"expo-linear-gradient": "~12.7.1",
"expo-linking": "~6.2.2",
"expo-notifications": "~0.27.6",
"expo-router": "~3.4.5",
"expo-splash-screen": "~0.26.4",
"expo-sqlite": "next",
"expo-status-bar": "~1.11.1",
"expo-task-manager": "~11.7.2",
"expo-updates": "~0.24.8",
"moment": "^2.30.1",
"moment-timezone": "^0.5.44",
"react": "18.2.0",
"react-native": "0.73.2",
"react-native-gesture-handler": "~2.14.0",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-svg": "^14.1.0",
"tamagui": "^1.88.17",
"typescript": "^5.3.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-plugin-inline-import": "^3.0.0",
"drizzle-kit": "^0.20.13",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.3"
},
"lint-staged": {
"*.tsx": [
"prettier --write",
"eslint --fix"
],
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"private": true
}