-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
60
61
62
63
64
65
66
67
{
"name": "test-app",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"check-typescript": "tsc --noEmit",
"check-eslint": "eslint './src/**/*{js,ts,jsx,tsx}'",
"lint": "yarn check-typescript && yarn check-eslint",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint './src/**/*{js,ts,jsx,tsx}' --fix",
"prettier --write './src/**/*{js,ts,jsx,tsx}'"
]
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@eva-design/eva": "^2.1.1",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"@ui-kitten/components": "^5.1.2",
"@ui-kitten/eva-icons": "^5.1.2",
"expo": "~46.0.13",
"expo-asset": "~8.6.1",
"expo-constants": "~13.2.4",
"expo-contacts": "~10.3.0",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"graphql": "^16.6.0",
"lottie-react-native": "5.1.3",
"react": "18.0.0",
"react-native": "0.69.6",
"react-native-appearance": "^0.3.4",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.3.0",
"react-native-toast-message": "^2.1.5",
"react-native-webview": "11.23.0",
"typescript": "^4.6.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@ui-kitten/metro-config": "^5.1.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.24.0",
"eslint-config-universe": "^11.1.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"private": true
}