forked from codinger41/pengscores
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"prettier": "prettier './app/**/*.{ts,tsx}' --single-quote --no-semi --write",
"eject": "expo eject"
},
"lint-staged": {
"app/**/*.{js,jsx,json}": [
"npm run prettier",
"git add"
],
"app/**/*.{ts,tsx}": [
"npm run prettier",
"git add"
]
},
"dependencies": {
"axios": "^0.19.0",
"expo": "^34.0.1",
"expo-ads-admob": "~6.0.0",
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
"react-native-gesture-handler": "~1.3.0",
"react-native-modalize": "^1.2.1",
"react-native-paper": "^2.16.0",
"react-native-reanimated": "~1.1.0",
"react-native-responsive-screen": "^1.2.2",
"react-native-web": "^0.11.4",
"react-navigation": "^3.11.1"
},
"devDependencies": {
"@types/react": "^16.8.23",
"@types/react-native": "^0.57.65",
"babel-preset-expo": "^6.0.0",
"husky": "^3.0.0",
"prettier": "^1.18.2",
"typescript": "^3.4.5"
},
"private": true
}