-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.38 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 4.38 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "kirri_client",
"main": "node_modules/expo/AppEntry.js",
"version": "0.1.0",
"author": {
"name": "Duck7"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --watchAll",
"typecheck": "tsc",
"format:check": "npx prettier --check \"**/*.{js,jsx,json,ts,tsx}\"",
"format": "npx prettier --write \"**/*.{js,jsx,json,ts,tsx}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install",
"lintStage": "node_modules/.bin/lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "yarn run typecheck && yarn run lintStage"
}
},
"jest": {
"preset": "jest-expo"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint",
"**/*.{js,jsx,json,ts,tsx}": "prettier --write"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/masked-view": "0.1.10",
"@react-native-picker/picker": "2.4.0",
"@react-navigation/bottom-tabs": "5.11.2",
"@react-navigation/material-top-tabs": "^5.3.15",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"axios": "^0.21.1",
"dateformat": "^4.5.1",
"expo": "~45.0.0",
"expo-app-loading": "~2.0.0",
"expo-asset": "~8.5.0",
"expo-av": "~11.2.3",
"expo-constants": "~13.1.1",
"expo-file-system": "~14.0.0",
"expo-font": "~10.1.0",
"expo-image-picker": "~13.1.1",
"expo-linking": "~3.1.0",
"expo-notifications": "~0.15.3",
"expo-permissions": "~13.2.0",
"expo-splash-screen": "~0.15.1",
"expo-status-bar": "~1.3.0",
"expo-updates": "~0.13.2",
"expo-web-browser": "~10.2.1",
"lodash": "^4.17.21",
"mobx": "^6.3.2",
"mobx-react": "^7.2.0",
"moment": "^2.29.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-moment": "^1.1.1",
"react-native": "0.68.2",
"react-native-actions-sheet": "^0.4.9",
"react-native-dropdown-picker": "^5.2.3",
"react-native-gesture-handler": "~2.2.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-pager-view": "5.4.15",
"react-native-paper": "^4.9.2",
"react-native-pell-rich-editor": "^1.8.6",
"react-native-reanimated": "~2.8.0",
"react-native-render-html": "^6.0.4",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-shadow-2": "^5.1.2",
"react-native-snap-carousel": "^3.9.1",
"react-native-svg": "12.3.0",
"react-native-svg-uri": "^1.2.3",
"react-native-swipe-up-down": "^1.0.7",
"react-native-swiper": "^1.6.0-rc.3",
"react-native-tab-view": "^3.0.1",
"react-native-web": "0.17.7",
"react-native-web-swiper": "^2.2.1",
"react-native-webview": "11.18.1",
"styled-components": "^5.3.0",
"tslib": "^2.2.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/plugin-transform-flow-strip-types": "^7.14.5",
"@types/dateformat": "^3.0.1",
"@types/form-data": "^2.5.0",
"@types/lodash": "^4.14.172",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-native-snap-carousel": "^3.8.4",
"@types/styled-components": "^5.1.9",
"@types/styled-components-react-native": "^5.1.1",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.12.0",
"babel-preset-mobx": "^2.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"jest-expo": "~41.0.0",
"lint-staged": "^11.0.0",
"metro-react-native-babel-preset": "^0.66.0",
"prettier": "2.3.0",
"react-native-svg-transformer": "^0.14.3",
"typescript": "~4.0.0"
},
"private": true,
"android": {
"package": ""
}
}