forked from nearform/optic-expo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.05 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
117
118
119
120
121
122
{
"private": true,
"name": "optic-expo",
"version": "1.5.2",
"versionCode": 31,
"scripts": {
"start": "expo start",
"start:native": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint .",
"typecheck": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"build:submit:android": "eas build --platform android --non-interactive --auto-submit --no-wait",
"build:submit:ios": "eas build --platform ios --non-interactive --auto-submit --no-wait",
"bump:version": "node scripts/bump-version.js",
"postinstall": "node -e \"fs.copyFileSync('./patch/Linking.js', './node_modules/expo-linking/build/Linking.js')\"",
"prepare": "husky install"
},
"dependencies": {
"@expo-google-fonts/didact-gothic": "^0.2.3",
"@expo-google-fonts/fira-code": "^0.2.3",
"@expo-google-fonts/poppins": "^0.2.3",
"@otplib/core": "^12.0.1",
"@otplib/plugin-base32-enc-dec": "^12.0.1",
"@otplib/plugin-crypto-js": "^12.0.1",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.19",
"@types/aes-js": "^3.1.2",
"aes-js": "^3.1.2",
"buffer": "^6.0.3",
"dotenv": "^16.3.1",
"expo": "~47.0.13",
"expo-apple-authentication": "~5.0.1",
"expo-auth-session": "~3.8.0",
"expo-barcode-scanner": "~12.1.0",
"expo-camera": "~13.1.0",
"expo-clipboard": "~4.0.1",
"expo-constants": "~14.0.2",
"expo-dev-client": "~2.0.1",
"expo-device": "~5.0.0",
"expo-document-picker": "~11.0.1",
"expo-file-system": "~15.1.1",
"expo-font": "~11.0.1",
"expo-linking": "~3.3.1",
"expo-local-authentication": "~13.0.2",
"expo-notifications": "~0.17.0",
"expo-random": "~13.0.0",
"expo-secure-store": "~12.0.0",
"expo-sharing": "~11.0.1",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"expo-updates": "~0.15.6",
"expo-web-browser": "~12.0.0",
"firebase": "8.2.3",
"global": "^4.4.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.8",
"react-native-countdown-circle-timer": "^3.2.1",
"react-native-crypto-js": "^1.0.0",
"react-native-gesture-handler": "~2.8.0",
"react-native-get-random-values": "~1.8.0",
"react-native-paper": "5.7.2",
"react-native-root-toast": "^3.5.1",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-svg": "13.4.0",
"react-native-web": "~0.18.12",
"react-timeago": "^7.2.0",
"url-otpauth": "^2.0.0",
"utility-types": "^3.10.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.8.0",
"@react-native-community/eslint-config": "^3.1.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^12.5.1",
"@types/aes-js": "^3.1.2",
"@types/jest": "^28.1.7",
"@types/node": "^20.8.3",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"@types/react-test-renderer": "^18.0.6",
"@types/react-timeago": "^4.1.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-ft-flow": "^2.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^28.1.3",
"jest-expo": "^47.0.1",
"lint-staged": ">=14",
"prettier": "^2.8.8",
"react-test-renderer": "^18.0.0",
"ts-jest": "^28.0.8",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
}
}