-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
98 lines (98 loc) · 3.59 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
{
"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": "yarn extract-messages 'src/**/*.{tsx,ts}' -l en-US,fr-FR -o src/locales -d en-US --flat",
"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.1",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/elements": "^1.3.30",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.3.29",
"@tanstack/react-query": "^5.59.16",
"axios": "^1.7.7",
"date-fns": "^4.1.0",
"expo": "~51.0.38",
"expo-blur": "~13.0.2",
"expo-build-properties": "~0.12.5",
"expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.28",
"expo-font": "~12.0.10",
"expo-linear-gradient": "~13.0.2",
"expo-linking": "~6.3.1",
"expo-localization": "~15.0.3",
"expo-router": "~3.5.23",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.27",
"intl": "^1.2.5",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intl": "^6.8.4",
"react-is": "18.3.1",
"react-native": "0.74.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-linear-gradient": "^2.8.3",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-web": "~0.19.6",
"react-native-webview": "13.8.6",
"react-native-youtube-iframe": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-typescript": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@react-native/babel-preset": "^0.75.4",
"@react-native/eslint-config": "^0.75.4",
"@tanstack/eslint-plugin-query": "^5.59.7",
"@testing-library/react-native": "^12.8.0",
"@types/jest": "^29.5.14",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.8.1",
"@types/react": "~18.2.79",
"@typescript-eslint/parser": "^8.11.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-react-intl-auto": "^3.3.0",
"eslint": "^8.57.1",
"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",
"extract-react-intl-messages": "^4.1.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-expo": "~51.0.4",
"prettier": "^3.3.3",
"typescript": "~5.3.3"
},
"private": true
}