-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.4 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
84
85
{
"name": "react-native-web-app",
"version": "1.2.1",
"description": "Easily create apps using web views",
"author": "Johann Buscail <[email protected]> (https://github.com/johannb75)",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"standard-version": {
"skip": {
"tag": true
}
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"watch-build": "tsc --watch",
"build": "tsc",
"recreate-build": "npx rimraf ./dist && yarn build",
"prepublish": "yarn recreate-build",
"release": "npx standard-version",
"npm-publish": "git push --follow-tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fashionstudio/react-native-web-app.git"
},
"bugs": {
"url": "https://github.com/fashionstudio/react-native-web-app/issues"
},
"homepage": "https://github.com/fashionstudio/react-native-web-app/wiki",
"keywords": [
"android",
"ios",
"react-native",
"expo",
"webview",
"webapp",
"native-apps"
],
"devDependencies": {
"@types/react": "^17.0.19",
"@types/react-native": "^0.64.13",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.11.0",
"typescript": "^4.4.2"
},
"dependencies": {
"@react-navigation/core": "^6.0.1",
"expo": "^42.0.3",
"expo-constants": "^11.0.1",
"expo-font": "^9.2.1",
"expo-notifications": "^0.12.3",
"expo-permissions": "^12.1.1",
"expo-progress": "^0.0.2",
"expo-status-bar": "^1.0.4",
"expo-tracking-transparency": "^1.1.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
"react-native-gesture-handler": "^1.10.3",
"react-native-offline": "^5.8.0",
"react-native-reanimated": "^2.2.0",
"react-native-redash": "14.2.4",
"react-native-svg": "^12.1.1",
"react-native-webview": "^11.13.0",
"react-navigation": "^4.4.4"
}
}