-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
126 lines (126 loc) · 3.92 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
123
124
125
126
{
"private": true,
"name": "optic-expo",
"version": "1.5.2",
"versionCode": 31,
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint .",
"typecheck": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky"
},
"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-async-storage/async-storage": "1.23.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-google-signin/google-signin": "^13.1.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.1.1",
"@types/aes-js": "^3.1.4",
"aes-js": "^3.1.2",
"buffer": "^6.0.3",
"dotenv": "^16.4.7",
"expo": "~52.0.26",
"expo-apple-authentication": "~7.1.3",
"expo-auth-session": "~6.0.2",
"expo-camera": "~16.0.13",
"expo-clipboard": "~7.0.1",
"expo-constants": "~17.0.4",
"expo-dev-client": "~5.0.10",
"expo-device": "~7.0.2",
"expo-document-picker": "~13.0.2",
"expo-file-system": "~18.0.7",
"expo-font": "~13.0.3",
"expo-linking": "~7.0.4",
"expo-local-authentication": "~15.0.2",
"expo-module-scripts": "^4.0.2",
"expo-notifications": "~0.29.12",
"expo-secure-store": "~14.0.1",
"expo-sharing": "~13.0.1",
"expo-splash-screen": "~0.29.21",
"expo-status-bar": "~2.0.1",
"expo-updates": "~0.26.13",
"expo-web-browser": "~14.0.2",
"firebase": "^11.1.0",
"global": "^4.4.0",
"react": "18.3.1",
"react-async-hook": "^4.0.0",
"react-dom": "18.3.1",
"react-native": "0.76.6",
"react-native-countdown-circle-timer": "^3.2.1",
"react-native-crypto-js": "^1.0.0",
"react-native-gesture-handler": "~2.20.2",
"react-native-get-random-values": "^1.11.0",
"react-native-paper": "^5.12.5",
"react-native-root-toast": "^3.6.0",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "^4.4.0",
"react-native-svg": "15.8.0",
"react-native-vector-icons": "^10.2.0",
"react-native-web": "^0.19.13",
"react-timeago": "^7.2.0",
"url-otpauth": "^2.0.0",
"utility-types": "^3.11.0",
"uuid": "^11.0.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@types/react": "~18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-test-renderer": "18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.0",
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-expo": "^52.0.3",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"react-test-renderer": "18.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,d.ts}": [
"eslint --fix",
"prettier --write"
]
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
}
}