-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.68 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
{
"name": "intoro",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "APP_ENV=development expo start",
"start:staging": "APP_ENV=staging expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"prepare": "husky install",
"emulators": "firebase emulators:start --import ./local --export-on-exit",
"seed": "rm -rf ./local && APP_ENV=development node seed/index.mjs",
"seed:hiragana": "APP_ENV=development node seed/index.mjs hiragana",
"seed:katakana": "APP_ENV=development node seed/index.mjs katakana",
"reset:reviews": "APP_ENV=development node seed/scripts/resetLevelReviews.mjs"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-navigation/material-bottom-tabs": "^6.2.15",
"@react-navigation/native": "^6.1.3",
"@react-navigation/native-stack": "^6.9.9",
"date-fns": "^2.29.3",
"expo": "~47.0.12",
"expo-status-bar": "~1.4.2",
"firebase": "^9.17.1",
"global": "^4.4.0",
"react": "18.1.0",
"react-native": "0.70.5",
"react-native-paper": "^5.2.0",
"react-native-reanimated": "2.12.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-swiper": "^1.6.0",
"react-native-vector-icons": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"metro-react-native-babel-preset": "^0.75.0",
"prettier": "2.8.3",
"react-native-dotenv": "^3.4.7"
},
"private": true,
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}