-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.66 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
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
{
"name": "shield-authenticator",
"version": "1.12.0",
"author": {
"name": "Luis Sacristán",
"email": "[email protected]",
"url": "https://sentidoweb.com"
},
"main": "index.js",
"scripts": {
"android": "expo run:android",
"format": "prettier --write '**/*.js'",
"test": "jest",
"lingui:extract": "lingui extract --clean",
"lingui:compile": "lingui compile",
"prepare": "husky install",
"lint": "eslint ./ --ext ts,tsx --fix",
"commit:lint": "commitlint",
"eas:build": "eas build -p android --profile preview --local --output=./build/latest.apk"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.21.0",
"@lingui/core": "^3.17.2",
"@lingui/react": "^3.17.2",
"@morrowdigital/watermelondb-expo-plugin": "^2.1.0",
"@nozbe/watermelondb": "^0.25.5",
"@react-native-masked-view/masked-view": "0.2.8",
"@react-navigation/native": "^6.1.4",
"@react-navigation/stack": "^6.3.14",
"@shopify/flash-list": "1.4.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"expo": "~48.0.6",
"expo-background-fetch": "~11.1.1",
"expo-barcode-scanner": "~12.3.2",
"expo-build-properties": "~0.5.1",
"expo-camera": "~13.2.1",
"expo-clipboard": "~4.1.2",
"expo-constants": "~14.2.1",
"expo-document-picker": "~11.2.2",
"expo-file-system": "~15.2.2",
"expo-font": "~11.1.1",
"expo-linking": "~4.0.1",
"expo-local-authentication": "~13.2.1",
"expo-localization": "~14.1.1",
"expo-router": "^1.0.1",
"expo-secure-store": "~12.1.1",
"expo-sharing": "~11.2.2",
"expo-splash-screen": "~0.18.1",
"expo-status-bar": "~1.4.4",
"expo-task-manager": "~11.1.1",
"make-plural": "^7.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.3",
"react-native-gesture-handler": "~2.9.0",
"react-native-paper": "^5.2.0",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-svg": "13.4.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-vector-icons": "^9.2.0",
"react-native-web": "~0.18.11",
"totp-generator": "^0.0.14"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
]
},
"keywords": [
"expo",
"reac-native",
"totp",
"2fa"
],
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "^7.20.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@lingui/babel-preset-react": "^2.9.2",
"@lingui/cli": "^3.17.2",
"@lingui/macro": "^3.17.2",
"@types/jest": "^29.4.0",
"@types/react-native": "^0.71.3",
"@types/totp-generator": "^0.0.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-loader": "^9.1.2",
"babel-plugin-macros": "^3.1.0",
"babel-preset-react": "^6.24.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-no-smart-quotes": "^1.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"jest-expo": "^48.0.0",
"lint-staged": "^13.2.0",
"path": "^0.12.7",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
}
}