-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.29 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
{
"name": "podcast-it",
"version": "2.0.0",
"author": {
"name": "Luis Sacristán",
"email": "[email protected]",
"url": "https://sentidoweb.com"
},
"main": "index.ts",
"scripts": {
"build": "npx eas build --profile production --platform android",
"build:local": "npx eas build -p android --profile preview --local --output=./build/latest.apk",
"start": "expo start",
"android": "rimraf .expo android & npx expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"ts:check": "tsc",
"prepare": "husky install",
"commit:lint": "commitlint",
"lingui:extract": "lingui extract --clean",
"lingui:compile": "lingui compile"
},
"dependencies": {
"@expo-google-fonts/roboto": "^0.2.3",
"@lingui/core": "^4.5.0",
"@lingui/react": "^4.5.0",
"@react-native-community/slider": "4.5.2",
"expo": "^51.0.14",
"expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.18",
"expo-file-system": "~17.0.1",
"expo-font": "~12.0.7",
"expo-image": "~1.12.12",
"expo-localization": "~15.0.3",
"expo-secure-store": "~13.0.1",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"react": "18.2.0",
"react-native": "0.74.2",
"react-native-svg": "15.2.0",
"react-native-track-player": "^3.2.0",
"react-native-vector-icons": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@lingui/babel-preset-react": "^2.9.2",
"@lingui/cli": "^4.5.0",
"@lingui/macro": "^4.5.0",
"@types/react": "^18.2.21",
"@types/react-native-vector-icons": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"babel-preset-react": "^6.24.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-smart-quotes": "^1.3.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"path": "^0.12.7",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
},
"private": true
}