-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.97 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.97 KB
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
{
"name": "react-jupyter-notebook",
"version": "0.3.2",
"homepage": "https://Joeyonng.github.io/react-jupyter-notebook",
"license": "MIT",
"private": false,
"description": "A simple React component that renders .ipynb files just like how they are rendered by Jupyter Lab",
"repository": {
"type": "git",
"url": "https://github.com/Joeyonng/react-jupyter-notebook"
},
"keywords": [
"React",
"Jupyter",
"Notebook",
"ipynb"
],
"author": {
"name": "Litao Qiao",
"email": "checkpppp@gmail.com"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"typeings": "dist/index.d.ts",
"dependencies": {
"@codemirror/gutter": "^0.19.9",
"@codemirror/lang-javascript": "^0.19.7",
"@codemirror/view": "^0.19.47",
"ansi-to-react": "^6.1.4",
"katex": "^0.13.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-markdown": "^6.0.2",
"react-syntax-highlighter": "^15.4.3",
"rehype-katex": "^5.0.0",
"remark-gfm": "^1.0.0",
"remark-math": "^4.0.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^17.0.42",
"@types/react-dom": "^17.0.14",
"@types/react-syntax-highlighter": "^13.5.2",
"gh-pages": "^3.2.0",
"node-sass": "^6.0.1",
"react-scripts": "5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.6.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}