-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 1.99 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
{
"version": "2.1.0",
"name": "react-remark",
"description": "Renders Markdown as React components",
"author": "Christian Murphy <[email protected]>",
"license": "MIT",
"repository": "remarkjs/react-remark",
"bugs": "https://github.com/remarkjs/react-remark/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"main": "dist/index.js",
"module": "dist/react-remark.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16.8"
},
"dependencies": {
"rehype-react": "^6.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"unified": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@storybook/addon-essentials": "^6.0.0",
"@storybook/react": "^6.0.0",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"husky": "^7.0.0",
"katex": "^0.13.0",
"pinst": "^2.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-test-renderer": "^17.0.0",
"rehype-katex": "^5.0.0",
"rehype-raw": "^5.0.0",
"rehype-sanitize": "^4.0.0",
"remark-gfm": "^1.0.0",
"remark-math": "^4.0.0",
"tsdx": "^0.14.0",
"typescript": "^3.0.0"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges"
]
}
}