Front End: Initialize TypeScript Project (#62)

* Front End: Initialize TypeScript Project

* Front End: Re-initialize project using Expo

* Front Project Initialization: Add testing dependency

* Init Front: Setup EAS configuration file

* Front: Workflows: Re-do build CI for Expo
This commit is contained in:
Arthur Jamet
2022-07-05 11:34:00 +02:00
committed by GitHub
parent 9221bb461e
commit c4bd0f5f79
17 changed files with 8698 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
{
"name": "chromacase",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest -i",
"test:cov": "jest -i --coverage",
"test:watch": "jest -i --watch"
},
"dependencies": {
"expo": "~45.0.0",
"expo-dev-client": "~1.0.0",
"expo-status-bar": "~1.3.0",
"jest": "^26.6.3",
"jest-expo": "^45.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-web": "0.17.7"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/react": "~17.0.21",
"@types/react-native": "~0.66.13",
"react-test-renderer": "17",
"typescript": "~4.3.5"
},
"private": true,
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
]
}
}