forked from flexn-io/renative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·118 lines (118 loc) · 4.51 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "renative-wrapper-app",
"version": "0.23.41",
"description": "🚀🚀🚀 Build universal cross-platform apps with React Native. Includes latest `iOS`, `tvOS`, `Android`, `Android TV`, `Android Wear`, `Web`, `Tizen TV`, `Tizen Watch`, `LG webOS`, `macOS/OSX`, `Windows`, `KaiOS`, `FirefoxOS` and `Firefox TV` platforms",
"keywords": [
"android tv",
"android wear",
"apple tv",
"boilerplate",
"cocoapods",
"cross-platform",
"desktop",
"electron",
"firefox tv",
"firefoxox",
"kaios",
"kit",
"kotlin",
"lg",
"macos",
"multiplatform",
"native",
"osx",
"react",
"react-native",
"smart tv",
"starter",
"swift",
"template",
"tizen",
"tizen watch",
"tvos",
"watch",
"web",
"webos",
"windows"
],
"homepage": "https://github.com/pavjacko/renative#readme",
"bugs": {
"url": "https://github.com/pavjacko/renative/issues"
},
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Pavel Jacko",
"url": "https://github.com/pavjacko"
},
"contributors": [
"Aurimas Mickys <https://github.com/aurimas535>",
"Daniel Marino Ruiz <https://github.com/CHaNGeTe>",
"David Rielo <https://github.com/davidrielo>",
"Sander Looijenga <https://github.com/sanderlooijenga>"
],
"bin": {
"rnv": "./rnv-cli/bin/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/pavjacko/renative.git"
},
"scripts": {
"fix": "rm -rf node_modules/@react-navigation/native/node_modules/react-native-safe-area-view/.git && rm -rf node_modules/react-native-safe-area-view/.git",
"lerna": "npx lerna bootstrap",
"link": "cd ./packages/rnv && npm link",
"prePublish": "rnv hooks run -x prePublish",
"publish": "npm run prePublish && npm run publish:rnv && npm run publish:renative && npm run publish:hello && npm run publish:blank",
"publish:blank": "cd packages/renative-template-blank && npm publish",
"publish:hello": "cd packages/renative-template-hello-world && npm publish",
"publish:renative": "cd packages/renative && npm publish",
"publish:rnv": "cd packages/rnv && npm publish",
"publish:sink": "cd packages/renative-template-kitchen-sink && npm publish",
"rambo": "rnv clean && npm i && rnv template apply --template renative-template-hello-world && npm run watch",
"test": "rnv template apply --template renative-template-hello-world && npm run test:rnv && npm run test:run",
"test:rnv": "cd ./packages/rnv && npm run test:local",
"test:run": "rnv run -p androidwear -t Android_Wear_Round_API_28 && concurrently \"rnv start\" \"rnv run -p tizen -t T-samsung-5.0-x86\" \"rnv run -p ios\" \"rnv run -p android -t Nexus_5X_API_26\" \"rnv run -p androidtv -t Android_TV_1080p_API_22\" \"rnv run -p macos\" \"rnv run -p web\" \"rnv run -p tvos\"",
"watch": "cd ./packages/rnv && npm run watch"
},
"dependencies": {
"@react-navigation/core": "3.4.2",
"@react-navigation/native": "3.5.0",
"@react-navigation/web": "1.0.0-alpha.9",
"react": "16.8.6",
"react-art": "16.8.6",
"react-dom": "16.8.6",
"react-native": "0.59.5",
"react-native-gesture-handler": "1.3.0",
"react-native-orientation-locker": "1.1.5",
"react-native-reanimated": "1.0.0-alpha.12",
"react-native-vector-icons": "6.4.2",
"react-native-web": "0.11.4",
"react-native-web-image-loader": "0.0.5",
"react-navigation": "3.9.2",
"react-navigation-tabs": "2.0.0-alpha.0",
"renative": "file:./packages/renative"
},
"devDependencies": {
"concurrently": "4.1.1",
"lerna": "latest",
"renative-template-blank": "file:./packages/renative-template-blank",
"renative-template-hello-world": "file:./packages/renative-template-hello-world",
"rnv": "file:./packages/rnv"
},
"engines": {
"cocoapods": ">=1.5.3",
"node": ">=6.0.0",
"npm": ">=4.0.0",
"xcode": ">=8.0.0"
},
"private": true,
"title": "ReNative",
"codename": "Iron Ladybird",
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
}
}