-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.11 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
{
"name": "kasane",
"version": "1.0.4",
"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": "eslint .",
"test": "jest",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"prettier:quick": "pretty-quick --staged",
"system-check": "run-s lint typecheck test",
"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": "56.0.13",
"@react-native-async-storage/async-storage": "3.1.0",
"@tanstack/react-query": "5.100.14",
"expo": "56.0.6",
"expo-constants": "56.0.16",
"expo-font": "56.0.5",
"expo-linking": "56.0.12",
"expo-router": "56.2.7",
"expo-splash-screen": "56.0.10",
"expo-status-bar": "56.0.4",
"graphql": "16.14.0",
"graphql-request": "7.4.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.85.3",
"react-native-gesture-handler": "3.0.0",
"react-native-reanimated": "4.4.0",
"react-native-safe-area-context": "5.8.0",
"react-native-screens": "4.25.2",
"react-native-svg": "15.15.4",
"react-native-web": "0.21.2",
"react-native-worklets": "0.9.1",
"zustand": "5.0.14"
},
"devDependencies": {
"@tauri-apps/cli": "2.11.2",
"@types/jest": "29.5.14",
"@types/react": "19.2.15",
"eslint": "9.39.4",
"eslint-config-expo": "56.0.4",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-expo": "56.0.4",
"npm-run-all2": "9.0.1",
"playwright": "^1.60.0",
"prettier": "3.8.3",
"pretty-quick": "4.2.2",
"react-test-renderer": "19.2.6",
"typescript": "6.0.3"
},
"private": true,
"jest": {
"preset": "jest-expo",
"moduleNameMapper": {
"^ansi-styles$": "<rootDir>/node_modules/pretty-format/node_modules/ansi-styles"
}
}
}