This repository was archived by the owner on Jul 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.01 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
{
"name": "react-native-github-markdown",
"version": "4.1.0",
"description": "Generate GitHub Flavored Markdown (with syntax highlight) using React Native WebView",
"keywords": [
"react-native",
"react",
"github",
"markdown",
"webview",
"highlight"
],
"repository": {
"type": "git",
"url": "https://github.com/robertying/react-native-github-markdown.git"
},
"homepage": "https://github.com/robertying/react-native-github-markdown",
"bugs": {
"url": "https://github.com/robertying/react-native-github-markdown/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Rui Ying",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"screenshots"
],
"scripts": {
"ios": "react-native run-ios",
"android": "react-native run-android",
"start": "react-native start",
"build": "babel src -d lib -x \".ts,.tsx\" -s inline && tsc",
"lint": "eslint --ext .js,.ts src/"
},
"peerDependencies": {
"react-native-webview": "*"
},
"dependencies": {
"@babel/runtime": "^7.12.0",
"darkreader": "^4.9.21",
"highlight.js": "^10.2.1",
"marked": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "7.12.0",
"@babel/core": "7.12.0",
"@primer/css": "15.2.0",
"@react-native-community/eslint-config": "2.0.0",
"@types/highlight.js": "9.12.4",
"@types/marked": "1.1.0",
"@types/react": "16.9.52",
"@types/react-native": "0.63.25",
"babel-plugin-preval": "5.0.0",
"eslint": "7.11.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"metro-react-native-babel-preset": "0.63.0",
"prettier": "2.1.2",
"react": "16.14.0",
"react-native": "0.63.3",
"react-native-webview": "10.9.2",
"typescript": "4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}