-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 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
101
102
103
104
105
{
"name": "react-native-starter",
"version": "1.0.0",
"repository": {
"url": "https://github.com/kahante-dev/react-native-starter"
},
"author": {
"name": "Khanate",
"email": "[email protected]",
"url": "https://khanate.pk"
},
"license": "MIT",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"update-deps": "pnpm upgrade -Li && expo install --fix && pnpm dlx expo-doctor",
"test": "jest --watch --coverage=false --changedSince=origin/main",
"test:all": "jest",
"lint": "eslint . --max-warnings=0 --fix && pnpm format && pnpm spellcheck",
"format": "prettier --write --log-level silent .",
"spellcheck": "cspell . --quiet",
"debug:logs": "pnpm dlx react-native logs-android",
"env:new": "dotenv-vault new",
"env:login": "dotenv-vault login",
"env:push": "pnpm env:push:development && pnpm env:push:production",
"env:push:development": "dotenv-vault push development .env.development",
"env:push:production": "dotenv-vault push production .env.production",
"env:pull": "pnpm env:pull:example && pnpm env:pull:development && pnpm env:pull:production",
"env:pull:example": "dotenv-vault pull example .env.example",
"env:pull:development": "dotenv-vault pull development .env.development",
"env:pull:production": "dotenv-vault pull production .env.production",
"env:open": "dotenv-vault open",
"diag": "tsc --extendedDiagnostics",
"trace": "tsc --generateTrace ./trace && npx @typescript/analyze-trace trace"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.21.0",
"@sentry/react-native": "5.20.0",
"expo": "^50.0.18",
"expo-application": "~5.8.4",
"expo-av": "~13.10.6",
"expo-constants": "~15.4.6",
"expo-device": "~5.9.4",
"expo-font": "~11.10.3",
"expo-linear-gradient": "~12.7.2",
"expo-linking": "~6.2.2",
"expo-network": "~5.8.0",
"expo-router": "~3.4.10",
"expo-secure-store": "~12.8.1",
"expo-status-bar": "~1.11.1",
"expo-system-ui": "~2.9.4",
"expo-updates": "~0.24.12",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-gesture-handler": "~2.14.1",
"react-native-paper": "^5.12.3",
"react-native-paper-dates": "^0.22.7",
"react-native-reanimated": "~3.6.3",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-svg": "14.1.0",
"zod": "^3.23.7"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@expo/config": "~8.5.6",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.5.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/babel__core": "^7.20.5",
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.10",
"@types/react": "~18.2.79",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@typescript/analyze-trace": "^0.10.1",
"cspell": "^8.8.0",
"dotenv-vault": "^1.26.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-jsx-expressions": "^1.3.2",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-sort-keys-plus": "^1.4.0",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-unused-imports": "^3.2.0",
"eslint-plugin-vitest": "^0.3.26",
"jest": "^29.7.0",
"jest-expo": "~50.0.4",
"node-html-parser": "^6.1.13",
"prettier": "^3.2.5",
"svgo": "^3.3.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]+sha256.4b4efa12490e5055d59b9b9fc9438b7d581a6b7af3b5675eb5c5f447cee1a589"
}