-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.91 KB
/
package.json
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
{
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"prepare": "husky install",
"format": "prettier --write ./src",
"check-format": "prettier --check ./src",
"check-lint": "eslint ./src --ext ts --ext tsx",
"check-types": "tsc --pretty --noEmit",
"test-all": "yarn check-format && yarn check-lint && yarn check-types && yarn build"
},
"dependencies": {
"@react-navigation/native": "^6.0.6",
"@react-navigation/native-stack": "^6.2.5",
"expo": "~43.0.3",
"expo-auth-session": "~3.4.2",
"expo-camera": "~12.0.3",
"expo-random": "~12.0.1",
"expo-status-bar": "~1.1.0",
"firebase": "8.2.3",
"mobx": "^6.3.7",
"mobx-react-lite": "^3.2.2",
"moment": "^2.29.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
"react-native-countdown-circle-timer": "^2.5.4",
"react-native-dotenv": "^3.3.0",
"react-native-elements": "^3.4.2",
"react-native-get-random-values": "^1.7.0",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.4.0",
"react-native-svg": "^12.1.1",
"react-native-timeago": "^0.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@types/react": "~17.0.34",
"@types/react-native": "~0.66.4",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1",
"typescript": "~4.4.4"
}
}