-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.71 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
{
"name": "@rootauthenticator/authenticator-mobile",
"version": "1.0.1",
"license": "Apache-2.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test": "jest",
"prettify": "prettier --write \"index.js\" \"src/**/*.{ts,tsx,json,css,scss,md,stories.js}\"",
"storybook:generate": "sb-rn-get-stories",
"storybook:watch": "sb-rn-watcher",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"dependencies": {
"@formatjs/intl-locale": "3.4.3",
"@formatjs/intl-pluralrules": "5.2.10",
"@lingui/react": "4.7.0",
"@otplib/core": "12.0.1",
"@otplib/plugin-base32-enc-dec": "12.0.1",
"@otplib/plugin-crypto-js": "12.0.1",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-native-clipboard/clipboard": "1.13.2",
"@react-navigation/native": "6.1.9",
"@react-navigation/native-stack": "6.9.17",
"react": "18.2.0",
"react-native": "0.72.9",
"react-native-config": "1.5.1",
"react-native-encrypted-storage": "4.0.3",
"react-native-get-random-values": "1.10.0",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "3.29.0",
"react-native-url-polyfill": "2.0.0",
"react-native-vision-camera": "3.7.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/core": "7.22.20",
"@babel/preset-env": "7.22.20",
"@babel/runtime": "7.22.15",
"@lingui/cli": "4.5.0",
"@lingui/macro": "4.5.0",
"@react-native-community/datetimepicker": "7.5.0",
"@react-native-community/eslint-config": "3.2.0",
"@react-native-community/slider": "4.4.3",
"@react-native/eslint-config": "0.72.2",
"@react-native/metro-config": "0.72.11",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-controls": "6.5.16",
"@storybook/addon-ondevice-actions": "6.5.6",
"@storybook/addon-ondevice-controls": "6.5.6",
"@storybook/react-native": "6.5.6",
"@tsconfig/react-native": "3.0.2",
"@types/jest": "29.5.5",
"@types/react": "18.2.21",
"@types/react-test-renderer": "18.0.1",
"@types/uuid": "9.0.4",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"babel-plugin-macros": "3.1.0",
"eslint": "8.49.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"metro-react-native-babel-preset": "0.77.0",
"prettier": "3.0.3",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"typescript": "5.2.2"
},
"lint-staged": {
"index.js": [
"prettier --write"
],
"src/**/*.{ts,tsx,json,css,scss,md,stories.js}": [
"prettier --write"
]
},
"engines": {
"node": "18",
"yarn": "1"
}
}