-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
83 lines (82 loc) · 2.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-native-web-browser-app",
"version": "0.2.0",
"description": "Fully-featured cross-platform Web Browser, made in React Native",
"main": "dist/app.js",
"types": "dist/app.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"prepare": "npm run build",
"original_postinstall": "jetify",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shirakaba/react-native-web-browser-app.git"
},
"bugs": {
"url": "https://github.com/shirakaba/react-native-web-browser-app/issues"
},
"homepage": "https://github.com/shirakaba/react-native-web-browser-app#readme",
"keywords": [
"retractible bars",
"LinguaBrowse",
"browser",
"web browser",
"React Native",
"React"
],
"peerDependencies": {
"@reduxjs/toolkit": "^1.1.0",
"expo": ">=36.0.0",
"react": ">=16.9.0",
"react-native": ">=0.61.4",
"react-native-gesture-handler": "*",
"react-native-reanimated": "*",
"react-native-safe-area-context": ">=0.6.1",
"react-native-screens": "*",
"react-native-unimodules": "*",
"react-native-vector-icons": "^6.6.0",
"react-native-webview": "*",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "~7.6.0",
"@types/react": "~16.9.0",
"@types/react-native": "~0.60.23",
"@types/react-redux": "^7.1.5",
"babel-preset-expo": "~8.0.0",
"jest-expo": "~36.0.0",
"jetifier": "~1.6.4",
"typescript": "~3.6.3",
"@reduxjs/toolkit": "^1.1.0",
"@types/react-native-vector-icons": "^6.4.5",
"expo": "~36.0.0",
"react": "~16.9.0",
"react-native": "~0.61.4",
"react-native-gesture-handler": "~1.5.0",
"react-native-reanimated": "git+https://github.com/software-mansion/react-native-reanimated.git#master",
"react-native-safe-area-context": "^0.6.1",
"react-native-screens": "~2.0.0-alpha.12",
"react-native-unimodules": "~0.7.0",
"react-native-vector-icons": "^6.6.0",
"react-native-webview": "git+https://github.com/shirakaba/react-native-webview.git#shirakaba/main",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"jest": {
"preset": "react-native"
}
}