-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathpackage.json
145 lines (145 loc) · 5.04 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "renative-wrapper",
"version": "0.35.4",
"description": "🚀🚀🚀 Unified Development Platform. Bootstrap, Develop & Deploy `iOS`, `tvOS`, `Android`, `Android TV`, `Fire TV`, `Android Wear`, `Web`, `Tizen TV`, `Tizen Watch`, `Tizen Mobile`, `LG webOS`, `macOS/OSX`, `Windows`, `KaiOS`, `FirefoxOS`, `Firefox TV`, `Linux` and `Chromecast` platforms",
"keywords": [
"android tv",
"android wear",
"apple tv",
"boilerplate",
"cocoapods",
"cross-platform",
"desktop",
"electron",
"firefox tv",
"firefoxox",
"firetv",
"kaios",
"kit",
"kotlin",
"lg",
"linux",
"macos",
"multiplatform",
"native",
"osx",
"react",
"react-native",
"smart tv",
"starter",
"swift",
"template",
"tizen",
"tizen mobile",
"tizen watch",
"tvos",
"watch",
"web",
"webos",
"windows"
],
"homepage": "https://github.com/renative-org/renative#readme",
"bugs": {
"url": "https://github.com/renative-org/renative/issues"
},
"license": "MIT",
"author": "Pavel Jacko <[email protected]> (https://github.com/pavjacko)",
"contributors": [
"Aurimas Mickys <https://github.com/aurimas535>",
"Daniel Marino Ruiz <https://github.com/CHaNGeTe>",
"David Rielo <https://github.com/davidrielo>",
"Donatas Velicka <https://github.com/doneitas>",
"Mihai Blaga <https://github.com/mihaiblaga89>",
"Ricardas Noreika <https://github.com/RicardasN>",
"Sander Looijenga <https://github.com/sanderlooijenga>"
],
"repository": {
"type": "git",
"url": "git://github.com/renative-org/renative.git"
},
"scripts": {
"bootstrap": "yarn run link:rnv && npx lerna bootstrap && yarn build",
"bootstrap-clean": "rm -rf ./node_modules; npx lerna clean --yes && yarn bootstrap",
"build": "lerna run --parallel --concurrency 1 build",
"build:clean": "lerna run --parallel --concurrency 1 build:clean",
"deploy-all": "npm run test && npm run deploy-prepare && npm run git-commit-tag",
"deploy-prepare": "rnv hooks run -x prePublish -r",
"deploy:alpha": "npm run deploy-all && npx lerna publish from-package --dist-tag alpha --yes && git push origin HEAD",
"deploy:alpha:soft": "npm run test && npm run deploy-prepare && npm run git-commit-tag && npx lerna publish from-package --dist-tag alpha --yes",
"deploy:feat": "npm run test && npm run deploy-prepare && npm run git-commit-tag && npx lerna publish from-package --dist-tag feat --yes && git push origin HEAD",
"deploy:prod": "npm run deploy-all && npx lerna publish from-package --yes && git push origin HEAD",
"git-commit": "rnv hooks run -x gitCommit -r",
"git-commit-tag": "rnv hooks run -x gitCommitAndTag -r",
"git-tag": "rnv hooks run -x gitTag -r",
"link:rnv": "cd packages/rnv && (yarn unlink || true) && yarn link",
"lint": "npx eslint ./packages",
"postinstall": "lerna link --force-local && npx jetify",
"test": "lerna run test --stream",
"watch": "lerna run --parallel --concurrency 2 watch"
},
"dependencies": {
"deepmerge": "3.2.0",
"simple-git": "2.20.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/runtime": "7.8.3",
"babel-eslint": "8.2.6",
"babel-jest": "24.9.0",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-polyfill-corejs2": "0.2.2",
"eslint": "6.2.2",
"eslint-config-airbnb": "17.0.0",
"eslint-plugin-detox": "1.0.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.10.0",
"eslint-plugin-react-hooks": "2.5.0",
"husky": "4.2.5",
"jest": "26.4.2",
"lerna": "4.0.0",
"lint-staged": "8.1.0",
"nodemon": "2.0.15",
"prettier": "1.17.1",
"pretty-quick": "1.11.0",
"rnv": "0.35.4",
"ttab": "^0.7.2"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=4.0.0"
},
"private": true,
"currentRelease": "0.33",
"title": "ReNative",
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"html-webpack-plugin",
"html-webpack-harddisk-plugin",
"webpack",
"mini-css-extract-plugin",
"@zeit/next-css",
"@expo/next-adapter",
"@expo/webpack-config",
"@expo/**",
"reantive-app",
"execa"
]
}
}