-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 4.09 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
{
"scripts": {
"start:tunnel": "expo start --tunnel",
"start:go": "expo start --go",
"start:go:usb": "expo start --localhost --go",
"dev": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eject": "expo eject",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"prepare": "husky install",
"secrets:linux": "echo Enter Bitwarden Password: && read BW_PASSWORD && (bw logout || exit 0) && export BW_SESSION=`bw login [email protected] $BW_PASSWORD --raw` && npm run secrets:get",
"secrets:windows": "set /p BW_PASSWORD=Enter Bitwarden Password:&& (bw logout || VER>NUL) && npm run secrets:login",
"secrets:login": "FOR /F %a IN ('bw login [email protected] %BW_PASSWORD% --raw') DO SET BW_SESSION=%a && npm run secrets:get",
"secrets:get": "bw sync && bw get item c187f74b-9b9c-402b-9999-af2b0020cc70 | fx .notes > \".env\""
},
"dependencies": {
"@babel/preset-env": "^7.22.14",
"@expo/cli": "^0.10.11",
"@fontsource/poppins": "^5.1.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-community/slider": "4.5.2",
"@react-native-masked-view/masked-view": "0.3.1",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@react-navigation/stack": "^6.3.17",
"@reduxjs/toolkit": "^1.9.5",
"@types/express": "^4.17.17",
"add": "^2.0.6",
"axios": "^1.5.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"expo": "^51.0.32",
"expo-auth-session": "~5.5.2",
"expo-av": "~14.0.7",
"expo-build-properties": "~0.12.5",
"expo-constants": "~16.0.2",
"expo-crypto": "~13.0.2",
"expo-dev-client": "~4.0.25",
"expo-notifications": "~0.28.16",
"expo-random": "~14.0.1",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.24",
"expo-web-browser": "~13.0.3",
"firebase": "^10.4.0",
"jwt-decode": "^3.1.2",
"mongoose": "^7.5.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "0.74.5",
"react-native-confetti-cannon": "^1.5.2",
"react-native-eject": "^0.2.0",
"react-native-element-dropdown": "^2.12.2",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-modal": "^13.0.1",
"react-native-pie-chart": "^3.0.2",
"react-native-progress": "^5.0.0",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-slider": "^0.11.0",
"react-native-step-indicator": "^1.0.3",
"react-native-svg": "15.2.0",
"react-native-toast-message": "^2.1.6",
"react-native-vector-icons": "^10.0.3",
"react-native-web": "~0.19.10",
"react-redux": "^8.1.2",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"rn-sliding-up-panel": "^2.4.6",
"updates": "^14.5.0",
"upgrade": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.22.11",
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@bitwarden/cli": "^2024.1.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"babel-preset-expo": "~11.0.0",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-react-native-a11y": "^3.3.0",
"fx": "^31.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "~5.3.3"
},
"private": true,
"name": "brain-exercise",
"version": "1.0.0"
}