feat: extract web example (#2333)

# Summary
extract web-example from example app.
This commit is contained in:
Bohdan Artiukhov
2024-07-09 11:07:31 +02:00
committed by GitHub
parent 832522d1c1
commit 979fb06b13
9 changed files with 8674 additions and 0 deletions

40
web-example/package.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "web-example",
"main": "index.js",
"version": "0.0.1",
"scripts": {
"start": "expo start --web",
"reset-project": "node ./scripts/reset-project.js",
"test": "jest --watchAll",
"lint": "expo lint"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
"@react-navigation/native": "^6.0.2",
"expo": "~51.0.2",
"expo-asset": "~10.0.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.0",
"react-native-reanimated": "3.9.0-nightly-20240421-474f6983d",
"react-native-svg": "link:../",
"react-native-svg-transformer": "^1.4.0",
"react-native-web": "0.19.11"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@expo/metro-runtime": "~3.2.1",
"@react-native/metro-config": "^0.74.85",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.45",
"@types/react-test-renderer": "^18.0.7",
"jest": "^29.2.1",
"jest-expo": "~51.0.3",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
},
"private": true
}