-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.63 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
{
"name": "setlist-sherlock",
"version": "1.5.4",
"license": "ISC",
"private": true,
"repository": "https://github.com/dylmye/setlist-sherlock",
"author": "Dylan Myers <dylmye-github-signed@opayq.com>",
"main": "expo-router/entry",
"scripts": {
"start": "cross-env NODE_OPTIONS=--max-old-space-size=8192 expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"lint:ts": "tsc",
"lint:js": "eslint .",
"generate:api:setlistfm": "rtk-query-codegen-openapi ./store/open-api-configs/setlist-fm.ts",
"generate:api:spotify": "rtk-query-codegen-openapi ./store/open-api-configs/spotify.ts",
"lingui:extract": "lingui extract",
"plugin:dev": "expo-module build plugins",
"bump": "bun ./scripts/bump-version.ts"
},
"dependencies": {
"@formatjs/intl-locale": "^4.2.8",
"@formatjs/intl-pluralrules": "^5.4.1",
"@lingui/core": "^5.1.2",
"@lingui/macro": "^5.1.2",
"@lingui/react": "^5.1.2",
"@lomray/react-native-apple-music": "^1.2.1",
"@pchmn/expo-material3-theme": "^1.3.2",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/elements": "^1.3.31",
"@react-navigation/native": "^7.0.0",
"@react-navigation/native-stack": "^7.0.0",
"@reduxjs/toolkit": "^2.5.0",
"date-fns": "^4.1.0",
"expo": "~52.0.21",
"expo-application": "~6.0.1",
"expo-asset": "~11.0.1",
"expo-auth-session": "~6.0.1",
"expo-build-properties": "~0.13.1",
"expo-check-installed-apps": "0.2.6",
"expo-clipboard": "~7.0.0",
"expo-constants": "~17.0.3",
"expo-crypto": "~14.0.1",
"expo-dev-client": "~5.0.6",
"expo-image": "~2.0.3",
"expo-intent-launcher": "~12.0.1",
"expo-linking": "~7.0.3",
"expo-localization": "~16.0.0",
"expo-network": "~7.0.4",
"expo-router": "~4.0.14",
"expo-secure-store": "~14.0.0",
"expo-splash-screen": "~0.29.18",
"expo-status-bar": "~2.0.0",
"expo-system-ui": "~4.0.6",
"expo-web-browser": "~14.0.1",
"react": "18.3.1",
"react-hook-form": "^7.54.2",
"react-native": "0.76.5",
"react-native-localization-settings": "^1.2.0",
"react-native-paper": "^5.12.5",
"react-native-reanimated": "~3.16.6",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.3.0",
"react-native-svg": "15.8.0",
"react-native-vector-icons": "^10.2.0",
"react-redux": "^9.2.0",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@lingui/babel-plugin-lingui-macro": "^5.1.2",
"@lingui/cli": "^5.1.2",
"@lingui/format-po": "^5.1.2",
"@lingui/metro-transformer": "^5.1.2",
"@rtk-query/codegen-openapi": "^2.0.0",
"@types/bun": "^1.1.14",
"@types/js-yaml": "^4.0.9",
"@types/react": "~18.3.18",
"@types/semver": "^7.5.8",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-universe": "^13.0.0",
"eslint-plugin-lingui": "^0.8.4",
"expo-module-scripts": "^4.0.2",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"semver": "^7.6.3",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"lint-staged": {
"*.{js,css,ts,tsx,json,html}": "prettier --write"
},
"engines": {
"node": ">=18.18.0"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"@formatjs/intl-locale",
"@formatjs/intl-pluralrules",
"@lingui/macro",
"@lomray/react-native-apple-music",
"@pchmn/expo-material3-theme",
"@reduxjs/toolkit",
"date-fns",
"expo-check-installed-apps",
"react-redux"
]
}
}
}
}