-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.76 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
{
"name": "appless-os-native",
"version": "1.0.0",
"main": "index.ts",
"dependencies": {
"@expo/metro-runtime": "~6.1.2",
"@openuidev/react-lang": "0.1.5",
"@react-native-community/slider": "5.0.1",
"expo": "^54.0.0",
"expo-linear-gradient": "~15.0.8",
"expo-secure-store": "~15.0.8",
"expo-status-bar": "~3.0.9",
"lucide-react-native": "^1.23.0",
"patch-package": "^8.0.1",
"phosphor-react-native": "^3.0.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-safe-area-context": "~5.6.0",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.2",
"react-native-webview": "13.15.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^22.0.0",
"@types/react": "~19.1.10",
"@types/react-test-renderer": "^19.1.0",
"jest": "^29.7.0",
"jest-expo": "~54.0.17",
"react-test-renderer": "19.1.0",
"typescript": "~5.9.2"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"postinstall": "patch-package",
"generate:prompt": "node scripts/embed-prompt.mjs",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"private": true,
"license": "MIT",
"jest": {
"preset": "jest-expo",
"moduleNameMapper": {
"^lucide-react-native$": "<rootDir>/node_modules/lucide-react-native/dist/cjs/lucide-react-native.js"
},
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@sentry/react-native|native-base|react-native-svg|lucide-react-native|@openuidev/.*))"
]
}
}