-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.55 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
{
"name": "sonraoku",
"version": "0.3.0",
"main": "index.ts",
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@11.2.2",
"repository": {
"type": "git",
"url": "https://github.com/kinefi/sonraoku.git"
},
"engines": {
"node": ">=24.0.0"
},
"bugs": {
"url": "https://github.com/kinefi/sonraoku/issues",
"email": "toplumbilisim+sonraoku@gmail.com"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "expo start",
"fix": "expo install --fix && pnpm dedupe",
"android": "expo run:android",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"doctor": "npx expo-doctor",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"build:android": "eas build --platform android --non-interactive",
"build:android:ci": "eas build --platform android --profile production --local",
"build:apk": "eas build --platform android --profile preview",
"build:apk:ci": "eas build --platform android --profile preview --local",
"build:all": "eas build --platform all --non-interactive",
"submit:android": "eas submit --platform android",
"release": "commit-and-tag-version"
},
"dependencies": {
"@expo/vector-icons": "^15.1.1",
"@mozilla/readability": "^0.6.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@tanstack/react-query": "5.62.3",
"drizzle-orm": "^0.45.2",
"expo": "~55.0.26",
"expo-background-fetch": "~55.0.16",
"expo-clipboard": "^55.0.13",
"expo-constants": "~55.0.16",
"expo-crypto": "^55.0.15",
"expo-document-picker": "~55.0.13",
"expo-file-system": "~55.0.22",
"expo-haptics": "^55.0.14",
"expo-linking": "~55.0.15",
"expo-router": "~55.0.16",
"expo-sharing": "~55.0.20",
"expo-speech": "~55.0.14",
"expo-sqlite": "~55.0.16",
"expo-task-manager": "~55.0.16",
"fast-xml-parser": "^5.8.0",
"nanoid": "^3.3.12",
"react": "19.2.0",
"react-native": "0.83.6",
"react-native-gesture-handler": "~2.30.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-webview": "13.16.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/react": "~19.2.15",
"babel-plugin-inline-import": "^3.0.0",
"babel-preset-expo": "~55.0.22",
"commit-and-tag-version": "^12.7.3",
"drizzle-kit": "^0.30.6",
"eslint": "^9.39.4",
"eslint-config-expo": "^55.0.1",
"eslint-config-prettier": "^10.1.8",
"expo-dev-client": "~55.0.35",
"prettier": "^3.8.3",
"typescript": "~5.9.3"
}
}