-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.67 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
{
"main": "expo-router/entry",
"packageManager": "[email protected]",
"scripts": {
"build:docker": "docker build . --tag last-dram && docker-compose up",
"build:ios": "eas build --platform ios",
"build:web": "NODE_ENV=production expo export --platform web && bun scripts/replace-html-paths.ts",
"cy:component": "NODE_ENV=production cypress open --component --browser chrome",
"dev": "bun --hot src/server.ts",
"dev:web": "bun dev & bun start:web",
"dev:ios": "bun dev & bun start:ios",
"format": "prettier --write .",
"start:ios": "NODE_ENV=development expo start --ios",
"start:web": "NODE_ENV=development expo start --web",
"start": "bun src/server.ts",
"submit:ios": "eas submit --platform ios --latest"
},
"dependencies": {
"@clerk/clerk-expo": "2.7.8",
"@expo/metro-runtime": "4.0.1",
"@trpc/client": "10.45.2",
"@trpc/react-query": "10.45.2",
"@trpc/server": "10.45.2",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-native": "0.73.0",
"bun-types": "1.2.4",
"eas-cli": "15.0.12",
"expo": "52.0.37",
"expo-router": "4.0.17",
"expo-secure-store": "14.0.1",
"expo-status-bar": "2.0.1",
"expo-updates": "0.27.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.7",
"react-native-safe-area-context": "4.12.0",
"react-native-web": "0.19.13",
"trpc-bun-adapter": "1.2.2",
"typescript": "5.7.3",
"zod": "3.24.2"
},
"devDependencies": {
"@testing-library/cypress": "10.0.3",
"@types/testing-library__cypress": "5.0.13",
"cypress": "14.0.3",
"husky": "9.1.7",
"prettier": "3.5.2",
"vite": "6.2.0"
}
}