forked from meliorence/react-native-render-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.36 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
{
"name": "react-native-render-html-project",
"version": "0.0.0",
"author": "Meliorence <contact@meliorence.com> (github.com/meliorence)",
"license": "BSD-2-Clause",
"private": true,
"repository": "https://github.com/meliorence/react-native-render-html",
"description": "React Native component that renders HTML as native views",
"types": "types/react-native-render-html/index.d.ts",
"main": "lib/index.js",
"homepage": "https://github.com/meliorence/react-native-render-html",
"scripts": {
"render-html": "yarn workspace react-native-render-html",
"discovery": "yarn workspace discovery",
"website": "yarn workspace website",
"@doc/pages": "yarn workspace @doc/pages",
"@doc/mdx-gen-cli": "yarn workspace @doc/mdx-gen-cli",
"doc-docusaurus-rfg-plugin": "yarn workspace doc-docusaurus-rfg-plugin",
"build:tools": "yarn @doc/pages build && yarn @doc/mdx-gen-cli build && yarn doc-docusaurus-rfg-plugin build",
"build:docs": "yarn build:tools && yarn website build-docs",
"process-svg-assets": "node scripts/processSvgAssets.js",
"postinstall": "yarn process-svg-assets",
"publish:website": "yarn build:docs && GIT_USER=$USER USE_SSH=true yarn workspace website deploy",
"publish:discovery": "yarn workspace discovery publish"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@react-native-community/eslint-config": "^3.0.0",
"@tsconfig/react-native": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"commitlint": "^12.1.1",
"conditional-type-checks": "^1.0.5",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"inkscape": "^3.1.1",
"metro-react-native-babel-preset": "^0.66.0",
"prettier": "^2.3.1",
"svgo": "^2.3.0"
},
"resolutions": {
"react": "17.0.1",
"react-dom": "17.0.1",
"@mdx-js/react": "2.0.0-next.9",
"react-native": "0.64.2",
"react-native-webview": "11.13.0",
"@svgr/webpack": "5.5.0",
"@svgr/babel-preset": "5.5.0",
"@svgr/core": "5.5.0",
"@svgr/hast-util-to-babel-ast": "5.5.0",
"@svgr/plugin-svgo": "5.5.0",
"expo-linear-gradient": "10.0.3"
},
"workspaces": [
"packages/*",
"apps/*",
"doc-tools/*"
],
"packageManager": "yarn@3.2.4"
}