forked from Rock-n-Prog/web-ts-monorepo-starter-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.88 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.88 KB
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
{
"name": "@acme/mobile",
"version": "0.0.0",
"main": "./index.js",
"scripts": {
"build": "expo export --platform all",
"dev": "expo start",
"dev:android": "expo start --android",
"dev:ios": "expo start --ios",
"lint": "eslint --max-warnings 0 --ext js,jsx,ts,tsx .",
"lint:fix": "eslint --max-warnings 0 --fix --ext js,jsx,ts,tsx ."
},
"dependencies": {
"@acme/api": "workspace:*",
"@acme/mobile-forms": "workspace:*",
"@acme/mobile-locales": "workspace:*",
"@acme/mobile-storage": "workspace:*",
"@acme/mobile-ui": "workspace:*",
"@expo/vector-icons": "^13.0.0",
"@hookform/resolvers": "^2.9.10",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"@tanstack/react-query": "^4.3.9",
"@trpc/client": "^10.0.0-rc.7",
"@trpc/react": "^10.0.0-proxy-beta.20",
"@trpc/server": "^10.0.0-rc.7",
"expo": "^47.0.6",
"expo-constants": "^14.0.2",
"expo-font": "^11.0.1",
"expo-localization": "^14.0.0",
"expo-modules-autolinking": "^1.0.0",
"expo-splash-screen": "^0.17.5",
"expo-status-bar": "^1.4.2",
"i18next": "^22.0.5",
"intl-pluralrules": "^1.3.1",
"react": "^18.1.0",
"react-hook-form": "^7.39.3",
"react-i18next": "^12.0.0",
"react-native": "^0.70.5",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.18.0",
"react-navigation": "^4.4.4",
"superjson": "^1.10.0"
},
"devDependencies": {
"@acme/eslint-config": "workspace:*",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.1",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.3",
"babel-preset-expo": "^9.2.2",
"eslint": "7.32.0",
"expo-cli": "^6.0.8",
"@acme/tsconfig": "workspace:*",
"typescript": "^4.5.3"
}
}