-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.4 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
75
76
77
78
79
80
{
"name": "2fa-mobile",
"version": "1.0.1",
"private": true,
"description": "2FA Mobile is used to generate OTPs for 2FA-enabled resources",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"android": "expo start --android",
"eject": "expo eject",
"ios": "expo start --ios",
"lint": "eslint",
"prestart": "node ./prestart.js",
"start": "expo start"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"homepage": "https://github.com/peterdee/2fa-mobile",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/peterdee/2fa-mobile"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/netinfo": "9.3.0",
"@react-navigation/bottom-tabs": "^6.3.2",
"@react-navigation/native": "^6.0.11",
"@react-navigation/native-stack": "^6.7.0",
"@reduxjs/toolkit": "^1.8.4",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"expo": "^46.0.0",
"expo-asset": "~8.6.1",
"expo-barcode-scanner": "~11.4.0",
"expo-constants": "~13.2.4",
"expo-crypto": "~11.0.0",
"expo-font": "~10.2.0",
"expo-haptics": "~11.3.0",
"expo-linking": "~3.2.2",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"expo-updates": "~0.14.6",
"expo-web-browser": "~11.0.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.6",
"react-native-gesture-handler": "~2.5.0",
"react-native-reanimated": "~2.9.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.3.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-web": "~0.18.7",
"react-redux": "^8.0.2",
"redux-persist": "^6.0.0",
"totp-generator": "^0.0.13"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"@types/totp-generator": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"typescript": "^4.6.3"
}
}