-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 4.13 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 4.13 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "rust-learning-app",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"code:check": "npm run typecheck && npm run lint && npm run format:check",
"code:fix": "npm run lint:fix && npm run format",
"quality": "npm run code:check",
"quality:fix": "npm run code:fix",
"dev:setup": "husky install",
"build:android:prod": "eas build --platform android --profile production",
"build:ios:prod": "eas build --platform ios --profile production",
"build:android:preview": "eas build --platform android --profile preview",
"build:ios:preview": "eas build --platform ios --profile preview",
"build:android:dev": "eas build --platform android --profile development",
"build:ios:dev": "eas build --platform ios --profile development",
"prebuild": "expo prebuild --platform all",
"prebuild:android": "expo prebuild --platform android",
"prebuild:ios": "expo prebuild --platform ios",
"clean": "expo prebuild --clean",
"run:android": "expo run:android",
"run:ios": "expo run:ios",
"build:android": "cd android && ./gradlew assembleDebug",
"build:ios": "cd ios && xcodebuild -workspace rustlearningapp.xcworkspace -scheme rustlearningapp -configuration Debug -destination generic/platform=iOS -derivedDataPath build",
"pod:install": "cd ios && pod install",
"gradle:clean": "cd android && ./gradlew clean",
"secrets:push:dev": "eas env:push development --path ./.env.development",
"secrets:push:preview": "eas env:push preview --path ./.env.preview",
"secrets:push:prod": "eas env:push production --path ./.env.production",
"secrets:push": "npm run secrets:push:dev && npm run secrets:push:preview && npm run secrets:push:prod",
"secrets:push:all": "eas env:push --all --path ./.env.development",
"env:setup": "node scripts/setup-env.js",
"secrets:upsert": "node scripts/secrets-upsert.js",
"secrets:upsert:setup": "npm run env:setup && npm run secrets:upsert",
"env:list:development": "eas env:list development",
"env:list:preview": "eas env:list preview",
"env:list:production": "eas env:list production",
"env:list:all": "npm run env:list:development && npm run env:list:preview && npm run env:list:production",
"env:check": "npm run env:list:all"
},
"dependencies": {
"@expo/metro-runtime": "~5.0.4",
"@expo/vector-icons": "^14.1.0",
"@google/generative-ai": "^0.24.1",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-navigation/bottom-tabs": "^7.4.6",
"@react-navigation/native": "^7.1.17",
"@react-navigation/native-stack": "^7.3.25",
"dotenv": "^17.2.2",
"expo": "~53.0.22",
"expo-constants": "^17.1.7",
"expo-file-system": "~18.1.11",
"expo-font": "~13.3.2",
"expo-localization": "~16.1.6",
"expo-notifications": "~0.31.4",
"expo-print": "~14.1.4",
"expo-sharing": "~13.1.5",
"expo-status-bar": "~2.2.3",
"i18next": "^25.4.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "^15.7.2",
"react-native": "0.79.6",
"react-native-safe-area-context": "^5.6.1",
"react-native-screens": "^4.15.2",
"react-native-web": "^0.20.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/react": "~19.0.10",
"@types/react-native-html-to-pdf": "^0.8.3",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eas-cli": "^16.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-native": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"typescript": "~5.8.3"
},
"private": true
}