forked from kioopi/native-html-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.6 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
{
"name": "plugins-project",
"private": true,
"scripts": {
"start": "yarn workspace example start",
"android": "yarn workspace example android",
"ios": "yarn workspace example ios",
"build:table": "yarn workspace @native-html/table-plugin build",
"build:heuristic-table": "yarn workspace @native-html/heuristic-table-plugin build",
"build:iframe": "yarn workspace @native-html/iframe-plugin build",
"build:core": "yarn workspace @native-html/plugins-core build",
"test:table": "yarn workspace @native-html/table-plugin test",
"test:table:jest": "yarn workspace @native-html/table-plugin test:jest",
"test:heuristic-table": "yarn workspace @native-html/heuristic-table-plugin test",
"test:heuristic-table:jest": "yarn workspace @native-html/heuristic-table-plugin test:jest",
"test:iframe": "yarn workspace @native-html/iframe-plugin test",
"test:iframe:jest": "yarn workspace @native-html/iframe-plugin test:jest",
"test:core": "yarn workspace @native-html/plugins-core test",
"test:core:jest": "yarn workspace @native-html/plugins-core test:jest",
"release:table": "yarn workspace @native-html/table-plugin release-it",
"release:heuristic-table": "yarn workspace @native-html/heuristic-table-plugin release-it",
"release:iframe": "yarn workspace @native-html/iframe-plugin release-it",
"release:core": "yarn workspace @native-html/plugins-core release-it",
"publish:example": "yarn workspace example expo publish"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@formidable-webview/eslint-config-webjs": "^1.0.0",
"@react-native-community/eslint-config": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^4.3.8",
"prettier": "^2.3.2"
},
"resolutions": {
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.2",
"react-test-renderer": "16.13.1",
"react-native-webview": "11.13.0",
"@release-it/conventional-changelog": "patch:@release-it/conventional-changelog@2.0.0#patches/@release-it-conventional-changelog.patch",
"release-it": "patch:release-it@14.3.0#patches/release-it.patch"
},
"author": "Jules Sam. Randolph <jules.sam.randolph@gmail.com> (https://github.com/jsamr)",
"license": "MIT",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"workspaces": [
"packages/*",
"example"
]
}