-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
100 lines (100 loc) · 3.71 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
{
"name": "whattowatch",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"dev": "expo start --dev-client",
"dev:android": "eas build --profile development-simulator --platform android",
"dev:ios": "eas build --profile development-simulator --platform ios",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eject": "expo eject",
"build:android": "eas build --platform android",
"build:ios": "eas build --platform ios",
"lint": "yarn lint:js && yarn lint:ts",
"lint:js": "npx eslint src --max-warnings 0",
"lint:ts": "npx tsc --noEmit",
"test": "jest --watchAll --coverage=false",
"test:coverage": "jest",
"test:e2e": "rm -rf maestro/screenshots && maestro test maestro/",
"test:ci": "jest --coverage=false --forceExit",
"translate:extract": "yarn formatjs extract 'src/**/*.ts*' --ignore='**/*.d.ts' --out-file src/locales/temp.json --flatten --format simple",
"translate": "yarn translate:extract && node ./scripts/translation.js",
"generate:api:types": "npx openapi-typescript https://developer.themoviedb.org/openapi/64542913e1f86100738e227f -o ./src/api/types.d.ts",
"prepare": "husky",
"preview": "eas update --branch preview --message",
"pre-release": "eas update --branch pre-release --message"
},
"dependencies": {
"@expo-google-fonts/poppins": "^0.2.3",
"@react-native-masked-view/masked-view": "0.3.2",
"@react-navigation/bottom-tabs": "^7.0.0",
"@react-navigation/elements": "^1.3.30",
"@react-navigation/native": "^7.0.0",
"@react-navigation/stack": "^6.3.29",
"@shopify/flash-list": "1.7.1",
"@tanstack/react-query": "^5.62.8",
"axios": "^1.7.9",
"date-fns": "^4.1.0",
"expo": "~52.0.20",
"expo-blur": "~14.0.1",
"expo-constants": "~17.0.3",
"expo-dev-client": "~5.0.6",
"expo-font": "~13.0.2",
"expo-linear-gradient": "~14.0.1",
"expo-linking": "~7.0.3",
"expo-localization": "~16.0.0",
"expo-router": "~4.0.14",
"expo-splash-screen": "~0.29.18",
"expo-status-bar": "~2.0.0",
"expo-updates": "~0.26.10",
"intl": "^1.2.5",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intl": "^6.8.4",
"react-is": "18.3.1",
"react-native": "0.76.5",
"react-native-gesture-handler": "~2.20.2",
"react-native-linear-gradient": "^2.8.3",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.1.0",
"react-native-svg": "15.8.0",
"react-native-web": "~0.19.13",
"react-native-webview": "13.12.5",
"react-native-youtube-iframe": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-typescript": "^7.26.3",
"@babel/preset-env": "^7.26.0",
"@formatjs/cli": "^6.3.14",
"@react-native/babel-preset": "^0.76.5",
"@react-native/eslint-config": "^0.76.5",
"@tanstack/eslint-plugin-query": "^5.62.1",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.10.2",
"@types/react": "~18.3.12",
"@typescript-eslint/parser": "^8.18.1",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.57.1",
"eslint-plugin-formatjs": "^5.2.6",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-testing-library": "^6.4.0",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-expo": "~52.0.2",
"prettier": "^3.4.2",
"typescript": "~5.7.2"
},
"private": true
}