This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.17 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
68
69
70
71
72
73
74
{
"private": true,
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"build:android": "cd android && ./gradlew assembleRelease"
},
"dependencies": {
"@expo/vector-icons": "^10.0.0",
"@otplib/core": "12.0.1",
"@otplib/plugin-base32-enc-dec": "12.0.1",
"@otplib/plugin-crypto-js": "12.0.1",
"@react-native-community/hooks": "^2.4.9",
"@react-native-community/masked-view": "0.1.6",
"@react-navigation/native": "^5.0.9",
"@react-navigation/stack": "^5.1.1",
"buffer": "^5.5.0",
"expo": "^37.0.0",
"expo-asset": "~8.1.4",
"expo-barcode-scanner": "~8.1.0",
"expo-constants": "~9.0.0",
"expo-document-picker": "^8.1.0",
"expo-file-system": "~8.1.0",
"expo-font": "~8.1.0",
"expo-haptics": "~8.1.0",
"expo-local-authentication": "^9.0.0",
"expo-random": "~8.1.0",
"expo-secure-store": "^8.1.0",
"expo-splash-screen": "^0.2.0",
"immer": "^6.0.3",
"ramda": "^0.27.0",
"randomcolor": "^0.5.4",
"react": "~16.9.0",
"react-dom": "16.9.0",
"react-native": "~0.61.5",
"react-native-draggable-flatlist": "^2.3.2",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "~1.6.0",
"react-native-paper": "^3.6.0",
"react-native-reanimated": "~1.7.0",
"react-native-redash": "^12.0.4",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "~2.2.0",
"react-native-unimodules": "~0.9.0",
"react-native-web": "^0.11.7",
"tweetnacl": "1.0.3",
"tweetnacl-util": "0.15.1",
"url-otpauth": "2.0.0",
"use-memo-one": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/node": "^13.9.0",
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"babel-jest": "~25.2.6",
"babel-preset-expo": "^8.1.0",
"husky": "^4.2.3",
"jest": "~25.2.6",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2",
"react-test-renderer": "~16.9.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": "prettier --write"
}
}