-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.45 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
{
"name": "kasane",
"version": "1.3.1",
"private": true,
"license": "MIT",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build:web": "expo export -p web",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:actions": "github-actionlint -color",
"spellcheck": "typos",
"spellcheck:fix": "typos --write-changes",
"test": "bun test src --reporter=dots --parallel",
"e2e": "playwright test",
"e2e:install": "playwright install chromium",
"format": "oxfmt",
"format:check": "oxfmt --check",
"system-check": "run-s typecheck format:check lint lint:actions spellcheck test build:web",
"prepare": "husky",
"desktop:init": "tauri init",
"desktop:dev": "tauri dev",
"desktop:build": "tauri build"
},
"dependencies": {
"@expo-google-fonts/space-grotesk": "0.4.1",
"@expo-google-fonts/zen-tokyo-zoo": "0.4.1",
"@expo/metro-runtime": "57.0.15",
"@react-native-async-storage/async-storage": "3.1.1",
"@supabase/supabase-js": "2.116.0",
"@tanstack/query-async-storage-persister": "5.103.1",
"@tanstack/react-query": "5.103.1",
"@tanstack/react-query-persist-client": "5.103.1",
"expo": "57.0.23",
"expo-constants": "57.0.18",
"expo-font": "57.0.4",
"expo-linking": "57.0.10",
"expo-router": "57.0.21",
"expo-splash-screen": "57.0.9",
"expo-status-bar": "57.0.1",
"graphql": "17.0.2",
"graphql-request": "7.4.0",
"react": "19.3.0",
"react-dom": "19.3.0",
"react-native": "0.86.3",
"react-native-gesture-handler": "3.3.0",
"react-native-reanimated": "4.6.0",
"react-native-safe-area-context": "5.10.0",
"react-native-screens": "4.28.0",
"react-native-svg": "15.15.5",
"react-native-web": "0.21.2",
"react-native-worklets": "0.12.2",
"zustand": "5.0.15"
},
"devDependencies": {
"@ocular-d/typos-bin": "1.50.2",
"@playwright/test": "1.63.0",
"@tauri-apps/cli": "2.11.4",
"@types/bun": "1.4.2",
"@types/react": "19.3.0",
"github-actionlint": "1.7.12",
"husky": "9.1.7",
"npm-run-all2": "9.0.3",
"oxfmt": "0.68.0",
"oxlint": "1.83.0",
"react-test-renderer": "19.3.0",
"typescript": "7.0.2"
},
"engines": {
"bun": ">=1.4.2"
},
"packageManager": "bun@1.4.2",
"trustedDependencies": [
"@ocular-d/typos-bin"
]
}