feat: add web build and deploy scripts for app

This commit is contained in:
Mohamed Boudra
2026-01-14 19:12:50 +07:00
parent f1827731ed
commit 6c9abe0854

View File

@@ -14,7 +14,9 @@
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
"test:e2e:ui": "playwright test --ui",
"build:web": "expo export --platform web",
"deploy:web": "npm run build:web && wrangler pages deploy dist --project-name paseo-app"
},
"dependencies": {
"@boudra/expo-two-way-audio": "^0.1.3",
@@ -88,6 +90,7 @@
"eslint-config-expo": "~10.0.0",
"playwright": "^1.56.1",
"typescript": "~5.9.2",
"vitest": "^3.2.4"
"vitest": "^3.2.4",
"wrangler": "^4.59.1"
}
}