-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.02 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
{
"name": "storely",
"version": "1.0.0",
"main": "index.ts",
"dependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.19.1",
"@react-navigation/native": "^7.4.1",
"@react-navigation/native-stack": "^7.19.1",
"expo": "~57.0.23",
"expo-build-properties": "~57.0.20",
"expo-camera": "~57.0.5",
"expo-file-system": "~57.0.7",
"expo-keep-awake": "~57.0.2",
"expo-network": "~57.0.2",
"expo-secure-store": "~57.0.4",
"expo-splash-screen": "~57.0.9",
"expo-sqlite": "~57.0.3",
"expo-status-bar": "~57.0.1",
"expo-updates": "~57.0.22",
"expo-video": "~57.0.4",
"react": "19.2.3",
"react-native": "0.86.3",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "~4.26.0",
"react-native-svg": "15.15.4"
},
"devDependencies": {
"@types/node": "^22.20.3",
"@types/react": "~19.2.2",
"eslint": "^9.39.5",
"eslint-config-expo": "~57.0.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.7",
"typescript": "~6.0.3"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"typecheck": "tsc --noEmit && tsc --noEmit -p tests",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\"",
"doctor": "npx expo-doctor",
"verify": "npm run typecheck && npm run lint && npm run test && npm run doctor",
"build:apk": "eas build --platform android --profile preview",
"build:prod": "eas build --platform android --profile production",
"build:dev-client": "eas build --platform android --profile development",
"test": "node --disable-warning=MODULE_TYPELESS_PACKAGE_JSON --import ./tests/register.mjs --test \"tests/*.test.ts\"",
"native:prebuild": "expo prebuild --clean"
},
"private": true,
"engines": {
"node": ">=20.19.4"
}
}