-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
{
"main": "node_modules/expo/AppEntry.js",
"version": "1.0.0",
"description": "TicTacToe game made with Expo (Runs on Android, iOS and Web)",
"keywords": [
"expo",
"tic-tac-toe",
"tictactoe",
"react native",
"typescript"
],
"homepage": "https://yahyabagia.github.io/TicTacToe-Expo/",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"deploy": "gh-pages -d web-build",
"predeploy": "expo build:web"
},
"dependencies": {
"expo": "^45.0.0",
"expo-av": "~11.2.3",
"expo-font": "~10.1.0",
"expo-splash-screen": "~0.15.1",
"expo-status-bar": "~1.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-gesture-handler": "~2.2.1",
"react-native-web": "0.17.7"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/react": "~17.0.21",
"@types/react-native": "~0.67.6",
"gh-pages": "^3.1.0",
"typescript": "~4.3.5"
},
"private": true
}